SourceImpl constructor

const SourceImpl(
  1. String path, {
  2. required String targetDir,
  3. required Iterable<String> excludePaths,
  4. required Map<String, FileConfig> fileConfigs,
})

The base class for where a brick is sourced from

Implementation

const SourceImpl(
  super.path, {
  required super.targetDir,
  required this.excludePaths,
  required this.fileConfigs,
});