copyWith method

LinkPreviewTypeGiftAuction copyWith({
  1. Gift? gift,
  2. int? auctionEndDate,
})

Implementation

LinkPreviewTypeGiftAuction copyWith({Gift? gift, int? auctionEndDate}) =>
    LinkPreviewTypeGiftAuction(
      gift: gift ?? this.gift,
      auctionEndDate: auctionEndDate ?? this.auctionEndDate,
    );