WithdrawAllRequest constructor

WithdrawAllRequest({
  1. String? currency,
  2. String? destination,
  3. String? userId,
})

Implementation

factory WithdrawAllRequest({
  $core.String? currency,
  $core.String? destination,
  $core.String? userId,
}) {
  final $result = create();
  if (currency != null) {
    $result.currency = currency;
  }
  if (destination != null) {
    $result.destination = destination;
  }
  if (userId != null) {
    $result.userId = userId;
  }
  return $result;
}