copyWith method
Implementation
InternalLinkTypeGiftCollection copyWith({
String? giftOwnerUsername,
int? collectionId,
}) => InternalLinkTypeGiftCollection(
giftOwnerUsername: giftOwnerUsername ?? this.giftOwnerUsername,
collectionId: collectionId ?? this.collectionId,
);