fromJson static method
Inherited by: SentGiftRegular SentGiftUpgraded
Implementation
static SentGiftRegular? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return SentGiftRegular(gift: Gift.fromJson(tdMapFromJson(json['gift'])));
}