copyWith method
Implementation
StarTransactionTypeGiftTransfer copyWith({
MessageSender? ownerId,
UpgradedGift? gift,
}) => StarTransactionTypeGiftTransfer(
ownerId: ownerId ?? this.ownerId,
gift: gift ?? this.gift,
);
StarTransactionTypeGiftTransfer copyWith({
MessageSender? ownerId,
UpgradedGift? gift,
}) => StarTransactionTypeGiftTransfer(
ownerId: ownerId ?? this.ownerId,
gift: gift ?? this.gift,
);