fromJson static method
Implementation
static UpgradedGiftBackdropCount? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return UpgradedGiftBackdropCount(
backdrop: UpgradedGiftBackdrop.fromJson(tdMapFromJson(json['backdrop'])),
totalCount: (json['total_count'] as int?) ?? 0,
);
}