toJson method
Creates a json from the object
Implementation
Map toJson() {
return {
'type': type,
'media': media,
'thumb': thumb,
'caption': caption,
'parse_mode': parseMode,
'caption_entities': captionEntities,
'disable_content_type_detection': disableContentTypeDetection,
}..removeWhere((_, v) => v == null);
}