progress method
Progress Messages Guidelines
Format:
<Resource or action that is awaited>
Example:
Waiting for authentication to complete...
Implementation
Future<bool> progress(
final String message,
final Future<bool> Function() runner, {
final bool newParagraph = false,
}) async {
return _logger.progress(message, runner, newParagraph: newParagraph);
}