toJson method

Map toJson()

Creates a json from the object

Implementation

Map toJson() {
  return {
    'type': type,
    'id': id,
    'gif_url': gifUrl,
    'gif_width': gifWidth,
    'gif_height': gifHeight,
    'gif_duration': gifDuration,
    'thumb_url': thumbUrl,
    'thumb_mime_type': thumbMimeType,
    'title': title,
    'caption': caption,
    'parse_mode': parseMode,
    'caption_entities': captionEntities,
    'reply_markup': replyMarkup,
    'input_message_content': inputMessageContent,
  }..removeWhere((_, v) => v == null);
}