Logger constructor

Logger({
  1. required LoggerComponent component,
  2. required String id,
  3. required LoggerLevel level,
  4. required LoggerType type,
  5. int? space,
})

Implementation

Logger({
  required this.component,
  required this.id,
  required this.level,
  required this.type,
  this.space,
});