Script constructor

const Script({
  1. required String name,
  2. String? run,
  3. String? description,
  4. Map<String, String> env = const {},
  5. PackageFilters? packageFilters,
  6. ExecOptions? exec,
  7. List<String>? steps = const [],
})

Implementation

const Script({
  required this.name,
  this.run,
  this.description,
  this.env = const {},
  this.packageFilters,
  this.exec,
  this.steps = const [],
});