toJson method
Implementation
@override
Map<String, dynamic> toJson() => <String, dynamic>{
'inline_query_id': inlineQueryId.toString(),
'button': button?.toJson(),
'results': results.map((item) => item.toJson()).toList(),
'next_offset': nextOffset,
'@type': constructor,
};