copyWith method
Implementation
GiftSettings copyWith({
bool? showGiftButton,
AcceptedGiftTypes? acceptedGiftTypes,
}) => GiftSettings(
showGiftButton: showGiftButton ?? this.showGiftButton,
acceptedGiftTypes: acceptedGiftTypes ?? this.acceptedGiftTypes,
);