StacOptions constructor

const StacOptions({
  1. required String name,
  2. String? description,
  3. required String projectId,
  4. String sourceDir = '/stac/',
  5. String outputDir = '/stac/.build',
})

Creates a StacOptions with the given configuration.

Implementation

const StacOptions({
  required this.name,
  this.description,
  required this.projectId,
  this.sourceDir = '/stac/',
  this.outputDir = '/stac/.build',
});