formatSpinner method
Format the spinner text for the currently active scope. Default uses green braille frames with gray elapsed time.
Implementation
@override
String formatSpinner(String frame, ActiveScope active) {
final elapsed = _gray('(${formatElapsed(active.stopwatch.elapsed)})');
return '${_cyan(frame)} ${active.scope.label}... $elapsed';
}