WithdrawAllReply constructor

WithdrawAllReply({
  1. Order? order,
})

Implementation

factory WithdrawAllReply({
  Order? order,
}) {
  final $result = create();
  if (order != null) {
    $result.order = order;
  }
  return $result;
}