MelosLogger constructor

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

Implementation

MelosLogger(
  Logger logger, {
  String indentation = '',
  String childIndentation = '  ',
})  : _logger = logger,
      _indentation = indentation,
      _childIndentation = childIndentation;