toJson method
Implementation
@override
Map<String, dynamic> toJson([dynamic extra]) {
return {
"@type": CONSTRUCTOR,
"inline_query_id": inlineQueryId,
"button": button?.toJson(),
"results": results.map((i) => i.toJson()).toList(),
"next_offset": nextOffset,
};
}