update method

void update(
  1. String update
)

Update the progress message.

Implementation

void update(String update) {
  if (_timer != null) _write(_clearLine);
  _message = update;
  _onTick(_timer);
}