in lib/cli_logging.dart [229:250]
void _updateDisplay(
{bool isFinal = false,
bool cancelled = false,
String? message,
bool showTiming = false}) {
var char = kAnimationItems[_timer.tick % kAnimationItems.length];
if (isFinal || cancelled) {
char = '';
}
io.stdout.write('${ansi.backspace}$char');
if (isFinal || cancelled) {
if (message != null) {
io.stdout.write(message.isEmpty ? ' ' : message);
} else if (showTiming) {
var time = (elapsed.inMilliseconds / 1000.0).toStringAsFixed(1);
io.stdout.write('${time}s');
} else {
io.stdout.write(' ');
}
io.stdout.writeln();
}
}