GeneratorOptions constructor

const GeneratorOptions({
  1. required GeneratorConfig generator,
  2. required Iterable<GeneratorConfig> otherGenerators,
  3. required String schemaPath,
  4. required String schema,
  5. required DMMF dmmf,
  6. required Iterable<Datasource> datasources,
  7. required String version,
  8. required BinaryPaths binaryPaths,
  9. bool postinstall = false,
  10. bool noEngine = false,
})

Implementation

const GeneratorOptions({
  required this.generator,
  required this.otherGenerators,
  required this.schemaPath,
  required this.schema,
  required this.dmmf,
  required this.datasources,
  required this.version,
  required this.binaryPaths,
  this.postinstall = false,
  this.noEngine = false,
});