LogLevel constructor

const LogLevel(
  1. String name,
  2. int priority
)

Implementation

const LogLevel(this.name, this.priority)
    : assert(priority > 0 && priority < 100, 'Priority level cannot be less than 1 or greater than 99');