toJson method
Implementation
@override
Map<String, dynamic> toJson([dynamic extra]) {
return {
"@type": CONSTRUCTOR,
"chat_id": chatId,
"message_thread_id": messageThreadId,
"reply_to": replyTo?.toJson(),
"options": options?.toJson(),
"query_id": queryId,
"result_id": resultId,
"hide_via_bot": hideViaBot,
"@extra": extra,
};
}