copyWith method

Implementation

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