fromJson static method
Inherited by: UpgradedGiftAttributeRarityEpic UpgradedGiftAttributeRarityLegendary UpgradedGiftAttributeRarityPerMille UpgradedGiftAttributeRarityRare UpgradedGiftAttributeRarityUncommon
Implementation
static UpgradedGiftAttributeRarityPerMille? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return UpgradedGiftAttributeRarityPerMille(
perMille: (json['per_mille'] as int?) ?? 0,
);
}