fromJson static method
Inherited by: UpgradedGiftAttributeIdBackdrop UpgradedGiftAttributeIdModel UpgradedGiftAttributeIdSymbol
Implementation
static UpgradedGiftAttributeIdBackdrop? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return UpgradedGiftAttributeIdBackdrop(
backdropId: (json['backdrop_id'] as int?) ?? 0,
);
}