copyWith method
Implementation
GiftAuctionState copyWith({Gift? gift, AuctionState? state}) =>
GiftAuctionState(gift: gift ?? this.gift, state: state ?? this.state);
GiftAuctionState copyWith({Gift? gift, AuctionState? state}) =>
GiftAuctionState(gift: gift ?? this.gift, state: state ?? this.state);