Echo constructor

Echo({
  1. LogLevel level = LogLevel.all,
  2. LogFormatter formatter = const LogFormatter(errorColors: ANSIColors.red, debugColors: ANSIColors.green, infoColors: ANSIColors.blue, warningColors: ANSIColors.yellow),
})

Implementation

Echo({
  this.level = LogLevel.all,
  this.formatter = const LogFormatter(
    errorColors: ANSIColors.red,
    debugColors: ANSIColors.green,
    infoColors: ANSIColors.blue,
    warningColors: ANSIColors.yellow,
  ),
});