OutputLocation constructor

OutputLocation(
  1. String path, {
  2. bool useSymlinks = false,
  3. bool hoist = true,
})

Implementation

OutputLocation(this.path, {this.useSymlinks = false, this.hoist = true}) {
  if (path.isEmpty && hoist) {
    throw ArgumentError('Can not build everything and hoist');
  }
}