copyWith method
Implementation
PushMessageContentGiveaway copyWith({
int? winnerCount,
GiveawayPrize? prize,
bool? isPinned,
}) => PushMessageContentGiveaway(
winnerCount: winnerCount ?? this.winnerCount,
prize: prize ?? this.prize,
isPinned: isPinned ?? this.isPinned,
);