copyWith method
Implementation
ChatRevenueAmount copyWith({
String? cryptocurrency,
int? totalAmount,
int? balanceAmount,
int? availableAmount,
bool? withdrawalEnabled,
}) => ChatRevenueAmount(
cryptocurrency: cryptocurrency ?? this.cryptocurrency,
totalAmount: totalAmount ?? this.totalAmount,
balanceAmount: balanceAmount ?? this.balanceAmount,
availableAmount: availableAmount ?? this.availableAmount,
withdrawalEnabled: withdrawalEnabled ?? this.withdrawalEnabled,
);