fromJson static method
Inherited by: InputPollMediaAnimation InputPollMediaAudio InputPollMediaDocument InputPollMediaLink InputPollMediaLocation InputPollMediaPhoto InputPollMediaSticker InputPollMediaVenue InputPollMediaVideo
Implementation
static InputPollMediaPhoto? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return InputPollMediaPhoto(
photo: InputPhoto.fromJson(tdMapFromJson(json['photo'])),
);
}