Logger constructor

Logger(
  1. String name, {
  2. void output(
    1. String message
    )?,
  3. bool enabled = true,
})

Implementation

Logger(this.name, {this.output, this.enabled = true});