custom static method
Writes message in the given logColor.
Implementation
static void custom(String message, {LogColor logColor = LogColor.white}) {
final color = _getColourCodes(color: logColor);
stdout.write('$color$message\x1B[0m');
}
Writes message in the given logColor.
static void custom(String message, {LogColor logColor = LogColor.white}) {
final color = _getColourCodes(color: logColor);
stdout.write('$color$message\x1B[0m');
}