LeanGenerator constructor

const LeanGenerator(
  1. Set<String> outputExtensions, {
  2. String? key,
  3. bool? allowSyntaxErrors,
  4. bool? generateToCache,
  5. Set<Type>? registerTypes,
  6. Set<String>? generateFor,
  7. Set<String>? runsBefore,
  8. Map<String, dynamic>? options,
  9. Set<String>? applies,
})

Creates a generator that's used by LibraryBuilder

Implementation

const LeanGenerator(
  this.outputExtensions, {
  this.key,
  this.allowSyntaxErrors,
  this.generateToCache,
  this.registerTypes,
  this.generateFor,
  this.runsBefore,
  this.options,
  this.applies,
});