BuildRunnerAction constructor

BuildRunnerAction(
  1. Logger logger,
  2. String path,
  3. String name,
  4. bool throwOnFail,
)

Implementation

BuildRunnerAction(this.logger, this.path, this.name, this.throwOnFail) {
  name = styleBold.wrap(name)!;
  progress = logger.interruptibleProgress("Building $name");
}