BuildCommand constructor
BuildCommand({
- required String rootPath,
- required List<
ConstructMaker> constructs, - required FileSystem fs,
- required Logger logger,
- required Analyzer analyzer,
- RoutesHandler? routesHandler,
Implementation
BuildCommand({
required this.rootPath,
required this.constructs,
required this.fs,
required this.logger,
required Analyzer analyzer,
RoutesHandler? routesHandler,
}) : routesHandler =
routesHandler ??
RoutesHandler(analyzer: analyzer, fs: fs, rootPath: rootPath) {
sharedBuildFlags.declareAll(argParser);
}