LogFormatter constructor

const LogFormatter({
  1. required ANSIColor errorColors,
  2. required ANSIColor debugColors,
  3. required ANSIColor infoColors,
  4. required ANSIColor warningColors,
})

Implementation

const LogFormatter({
  required this.errorColors,
  required this.debugColors,
  required this.infoColors,
  required this.warningColors,
});