fromJson static method
Inherited by: InputChatPhotoAnimation InputChatPhotoPrevious InputChatPhotoStatic InputChatPhotoSticker
Implementation
static InputChatPhotoStatic? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return InputChatPhotoStatic(
photo: InputFile.fromJson(tdMapFromJson(json['photo'])),
);
}