toColor method

Color toColor(
  1. bool dark
)

Implementation

Color toColor(bool dark) {
  if (this == Level.CONFIG) {
    return dark ? Colors.white38 : Colors.black38;
  } else if (this == Level.INFO) {
    return dark ? Colors.white : Colors.black;
  } else if (this == Level.WARNING) {
    return Colors.orange;
  } else if (this == Level.SEVERE) {
    return Colors.red;
  } else if (this == Level.SHOUT) {
    return Colors.pinkAccent;
  } else {
    return dark ? Colors.white : Colors.black;
  }
}