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