copyWith method
ChatRevenueTransactionTypeFragmentWithdrawal
copyWith({
- int? withdrawalDate,
- RevenueWithdrawalState? state,
Implementation
ChatRevenueTransactionTypeFragmentWithdrawal copyWith({
int? withdrawalDate,
RevenueWithdrawalState? state,
}) => ChatRevenueTransactionTypeFragmentWithdrawal(
withdrawalDate: withdrawalDate ?? this.withdrawalDate,
state: state ?? this.state,
);