copyWith method

GiveawayParticipantStatusDisallowedCountry copyWith({
  1. String? userCountryCode,
})

Implementation

GiveawayParticipantStatusDisallowedCountry copyWith({
  String? userCountryCode,
}) => GiveawayParticipantStatusDisallowedCountry(
  userCountryCode: userCountryCode ?? this.userCountryCode,
);