progress static method

void progress(
  1. String str
)

Adds an progress message.

Implementation

static void progress(String str) {
  _controller.add(PrintContent(str, PrintType.progress));
  stdout.writeln(str);
}