WithdrawAllRequest constructor
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;
}