CliLogger constructor

CliLogger({
  1. Logger? logger,
  2. String indentation = '',
  3. String childIndentation = ' ',
})

Implementation

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