CliLogger.of constructor
Implementation
factory CliLogger.of(
{required bool verbose,
String indentation = '',
String childIndentation = ' '}) {
return _CliLogger(
verbose ? Logger.verbose() : Logger.standard(),
indentation,
childIndentation,
);
}