BuilderEntry constructor
BuilderEntry(})
Creates a BuilderEntry with a standard builder.
key
A unique identifier for this builder.
builder
A factory function that creates the builder.
generateToCache
Whether outputs should be written to the build cache.
generateFor
Glob patterns that determine which files to process.
runsBefore
Builder keys that this builder should run before.
options
Configuration options for the builder.
annotationsTypeMap
Custom type annotations to register with the resolver.
applies
Builder keys that this builder applies to.
Implementation
factory BuilderEntry(
String key,
BuilderFactory builder, {
bool generateToCache,
Set<String> generateFor,
Set<String> runsBefore,
Map<String, dynamic> options,
Map<Type, String> registeredTypes,
Set<String> applies,
}) = BuilderEntryImpl;