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