PremiumGiveawayParticipantStatusDisallowedCountry.fromJson constructor

PremiumGiveawayParticipantStatusDisallowedCountry.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

factory PremiumGiveawayParticipantStatusDisallowedCountry.fromJson(
        Map<String, dynamic> json) =>
    PremiumGiveawayParticipantStatusDisallowedCountry(
      userCountryCode: json['user_country_code'],
    );