GeneratorOptions constructor

GeneratorOptions({
  1. bool generateHelpers = true,
  2. bool generateQueries = true,
  3. List<ScalarMap?> scalarMapping = const [],
  4. String? fragmentsGlob,
  5. List<SchemaMap> schemaMapping = const [],
  6. List<String> ignoreForFile = const [],
})

Instantiate generator options.

Implementation

GeneratorOptions({
  this.generateHelpers = true,
  this.generateQueries = true,
  this.scalarMapping = const [],
  this.fragmentsGlob,
  this.schemaMapping = const [],
  this.ignoreForFile = const [],
});