toJson method

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

Object to Map serializer

Implementation

@override
Map<String, dynamic> toJson() {
  return {
    '@type': 'inputInlineQueryResultGame',
    if (extra != null) '@extra': extra,
    'id': id,
    'game_short_name': game_short_name,
    'reply_markup': reply_markup
  };
}