BuilderOverride constructor

const BuilderOverride({
  1. required String key,
  2. Map<String, dynamic>? options,
  3. Set<String>? generateFor,
  4. Set<String>? runsBefore,
})

Creates a new builder override with the specified parameters.

@param key The key of the builder to override @param options Optional configuration options to override @param generateFor Optional file patterns to override @param runsBefore Optional dependencies to override

Implementation

const BuilderOverride({
  required this.key,
  this.options,
  this.generateFor,
  this.runsBefore,
});