copyWith method

StarTransactionTypeGiftAuctionBid copyWith({
  1. MessageSender? ownerId,
  2. Gift? gift,
})

Implementation

StarTransactionTypeGiftAuctionBid copyWith({
  MessageSender? ownerId,
  Gift? gift,
}) => StarTransactionTypeGiftAuctionBid(
  ownerId: ownerId ?? this.ownerId,
  gift: gift ?? this.gift,
);