BuilderDefinitionEntry constructor

BuilderDefinitionEntry({
  1. required String key,
  2. required String import,
  3. required BuilderType builderType,
  4. required String generatorName,
  5. required bool expectsOptions,
  6. Set<String>? applies,
  7. Map<String, dynamic>? options,
  8. bool? generateToCache,
  9. Set<String>? generateFor,
  10. Set<String>? runsBefore,
  11. List<RuntimeTypeRegisterEntry>? registeredTypes,
  12. bool? allowSyntaxErrors,
  13. Set<String>? outputExtensions,
})

Creates a new builder definition entry with the specified parameters.

Implementation

BuilderDefinitionEntry({
  required this.key,
  required this.import,
  required this.builderType,
  required this.generatorName,
  required this.expectsOptions,
  this.applies,
  this.options,
  this.generateToCache,
  this.generateFor,
  this.runsBefore,
  this.registeredTypes,
  this.allowSyntaxErrors,
  this.outputExtensions,
});