fromJson static method
Implementation
static StoryContentPhoto? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return StoryContentPhoto(
photo: Photo.fromJson(tdMapFromJson(json['photo'])),
);
}
static StoryContentPhoto? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return StoryContentPhoto(
photo: Photo.fromJson(tdMapFromJson(json['photo'])),
);
}