PrettyPrintFormatter constructor

PrettyPrintFormatter(
  1. Resolver resolver,
  2. Loader loader, {
  3. List<String>? reportOn,
  4. bool reportFuncs = false,
})

Creates a pretty-print formatter.

If reportOn is provided, coverage report output is limited to files prefixed with one of the paths included.

Implementation

PrettyPrintFormatter(this.resolver, this.loader,
    {this.reportOn, this.reportFuncs = false});