copyWith method

IncreaseGiftAuctionBid copyWith({
  1. int? giftId,
  2. int? starCount,
})

Implementation

IncreaseGiftAuctionBid copyWith({int? giftId, int? starCount}) =>
    IncreaseGiftAuctionBid(
      giftId: giftId ?? this.giftId,
      starCount: starCount ?? this.starCount,
    );