CliLogger constructor
Implementation
factory CliLogger(
{Logger? logger,
String indentation = '',
String childIndentation = ' '}) {
return _CliLogger(
logger ?? Logger.standard(),
indentation,
childIndentation,
);
}
factory CliLogger(
{Logger? logger,
String indentation = '',
String childIndentation = ' '}) {
return _CliLogger(
logger ?? Logger.standard(),
indentation,
childIndentation,
);
}