Volume constructor

Volume({
  1. String? name,
  2. String? path,
})

Implementation

factory Volume({
  $core.String? name,
  $core.String? path,
}) {
  final $result = create();
  if (name != null) {
    $result.name = name;
  }
  if (path != null) {
    $result.path = path;
  }
  return $result;
}