copyWith method

InternalLinkTypeGiftCollection copyWith({
  1. String? giftOwnerUsername,
  2. int? collectionId,
})

Implementation

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