toJson method

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

Implementation

@override
Map<String, dynamic> toJson() => <String, dynamic>{
  'id': id,
  'title': title,
  'thumbnail_url': thumbnailUrl,
  'thumbnail_mime_type': thumbnailMimeType,
  'video_url': videoUrl,
  'video_mime_type': videoMimeType,
  'video_duration': videoDuration,
  'video_width': videoWidth,
  'video_height': videoHeight,
  'reply_markup': replyMarkup?.toJson(),
  'input_message_content': inputMessageContent?.toJson(),
  '@type': constructor,
};