copyWith method

AccountRequestWithdrawResponse copyWith({
  1. String? operationId,
  2. double? withdrawValue,
})

Implementation

AccountRequestWithdrawResponse copyWith({
  String? operationId,
  double? withdrawValue,
}) {
  return AccountRequestWithdrawResponse(
    operationId: operationId ?? this.operationId,
    withdrawValue: withdrawValue ?? this.withdrawValue,
  );
}