copyWith method
Implementation
SetGiftCollectionName copyWith({
MessageSender? ownerId,
int? collectionId,
String? name,
}) => SetGiftCollectionName(
ownerId: ownerId ?? this.ownerId,
collectionId: collectionId ?? this.collectionId,
name: name ?? this.name,
);