Echo constructor
Echo({
- LogLevel level = LogLevel.all,
- 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,
),
});