copyWith method
GiftAuctionAcquiredGift
copyWith({
- MessageSender? receiverId,
- int? date,
- int? starCount,
- int? auctionRoundNumber,
- int? auctionRoundPosition,
- int? uniqueGiftNumber,
- FormattedText? text,
- bool? isPrivate,
Implementation
GiftAuctionAcquiredGift copyWith({
MessageSender? receiverId,
int? date,
int? starCount,
int? auctionRoundNumber,
int? auctionRoundPosition,
int? uniqueGiftNumber,
FormattedText? text,
bool? isPrivate,
}) => GiftAuctionAcquiredGift(
receiverId: receiverId ?? this.receiverId,
date: date ?? this.date,
starCount: starCount ?? this.starCount,
auctionRoundNumber: auctionRoundNumber ?? this.auctionRoundNumber,
auctionRoundPosition: auctionRoundPosition ?? this.auctionRoundPosition,
uniqueGiftNumber: uniqueGiftNumber ?? this.uniqueGiftNumber,
text: text ?? this.text,
isPrivate: isPrivate ?? this.isPrivate,
);