copyWith method
AddGiftCollectionGifts
copyWith({
- MessageSender? ownerId,
- int? collectionId,
- List<
String> ? receivedGiftIds,
Implementation
AddGiftCollectionGifts copyWith({
MessageSender? ownerId,
int? collectionId,
List<String>? receivedGiftIds,
}) => AddGiftCollectionGifts(
ownerId: ownerId ?? this.ownerId,
collectionId: collectionId ?? this.collectionId,
receivedGiftIds: receivedGiftIds ?? this.receivedGiftIds,
);