copyWith method

Implementation

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