copyWith method

AuctionBid copyWith({
  1. int? starCount,
  2. int? bidDate,
  3. int? position,
})

Implementation

AuctionBid copyWith({int? starCount, int? bidDate, int? position}) =>
    AuctionBid(
      starCount: starCount ?? this.starCount,
      bidDate: bidDate ?? this.bidDate,
      position: position ?? this.position,
    );