toJson method
Implementation
@override
Map<String, dynamic> toJson([dynamic extra]) {
return {
"@type": CONSTRUCTOR,
"inline_query_id": inlineQueryId,
"is_personal": isPersonal,
"results": results.map((i) => i.toJson()).toList(),
"cache_time": cacheTime,
"next_offset": nextOffset,
"switch_pm_text": switchPmText,
"switch_pm_parameter": switchPmParameter,
"@extra": extra,
};
}