copyWith method
Implementation
GiveawayParameters copyWith({
int? boostedChatId,
List<int>? additionalChatIds,
int? winnersSelectionDate,
bool? onlyNewMembers,
bool? hasPublicWinners,
List<String>? countryCodes,
String? prizeDescription,
}) => GiveawayParameters(
boostedChatId: boostedChatId ?? this.boostedChatId,
additionalChatIds: additionalChatIds ?? this.additionalChatIds,
winnersSelectionDate: winnersSelectionDate ?? this.winnersSelectionDate,
onlyNewMembers: onlyNewMembers ?? this.onlyNewMembers,
hasPublicWinners: hasPublicWinners ?? this.hasPublicWinners,
countryCodes: countryCodes ?? this.countryCodes,
prizeDescription: prizeDescription ?? this.prizeDescription,
);