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