copyWith method
ChatRevenueTransaction
copyWith({
- String? cryptocurrency,
- int? cryptocurrencyAmount,
- ChatRevenueTransactionType? type,
Implementation
ChatRevenueTransaction copyWith({
String? cryptocurrency,
int? cryptocurrencyAmount,
ChatRevenueTransactionType? type,
}) => ChatRevenueTransaction(
cryptocurrency: cryptocurrency ?? this.cryptocurrency,
cryptocurrencyAmount: cryptocurrencyAmount ?? this.cryptocurrencyAmount,
type: type ?? this.type,
);