fromJson static method
Inherited by: GiveawayParticipantStatusAdministrator GiveawayParticipantStatusAlreadyWasMember GiveawayParticipantStatusDisallowedCountry GiveawayParticipantStatusEligible GiveawayParticipantStatusParticipating
Implementation
static GiveawayParticipantStatusDisallowedCountry? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return GiveawayParticipantStatusDisallowedCountry(
userCountryCode: (json['user_country_code'] as String?) ?? '',
);
}