Color.ansi constructor
A named ANSI colour (0–7), rendered bright when used with Style.bold or
via the 90–97 range when bright is set.
Implementation
const Color.ansi(int code, {bool bright = false})
: this._(bright ? code + 8 : code, null);
A named ANSI colour (0–7), rendered bright when used with Style.bold or
via the 90–97 range when bright is set.
const Color.ansi(int code, {bool bright = false})
: this._(bright ? code + 8 : code, null);