fromJson static method
Inherited by: UpgradedGiftAttributeRarityEpic UpgradedGiftAttributeRarityLegendary UpgradedGiftAttributeRarityPerMille UpgradedGiftAttributeRarityRare UpgradedGiftAttributeRarityUncommon
Implementation
static UpgradedGiftAttributeRarityLegendary? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return const UpgradedGiftAttributeRarityLegendary();
}