copyWith method
Implementation
AcceptedGiftTypes copyWith({
bool? unlimitedGifts,
bool? limitedGifts,
bool? upgradedGifts,
bool? giftsFromChannels,
bool? premiumSubscription,
}) => AcceptedGiftTypes(
unlimitedGifts: unlimitedGifts ?? this.unlimitedGifts,
limitedGifts: limitedGifts ?? this.limitedGifts,
upgradedGifts: upgradedGifts ?? this.upgradedGifts,
giftsFromChannels: giftsFromChannels ?? this.giftsFromChannels,
premiumSubscription: premiumSubscription ?? this.premiumSubscription,
);