BuilderDefinitionEntry constructor
BuilderDefinitionEntry({
- required String key,
- required String import,
- required BuilderType builderType,
- required String generatorName,
- required bool expectsOptions,
- Set<
String> ? applies, - Map<
String, dynamic> ? options, - bool? generateToCache,
- Set<
String> ? generateFor, - Set<
String> ? runsBefore, - List<
RuntimeTypeRegisterEntry> ? registeredTypes, - bool? allowSyntaxErrors,
- 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,
});