toJson method

  1. @override
Map<String, dynamic> toJson()
override

Object to Map serializer

Implementation

@override
Map<String, dynamic> toJson() {
  return {
    '@type': 'shareChatWithBot',
    if (extra != null) '@extra': extra,
    'chat_id': chat_id,
    'message_id': message_id,
    'button_id': button_id,
    'shared_chat_id': shared_chat_id,
    'only_check': only_check
  };
}