CliColor enum

Changes stdout color

Inheritance
Available extensions

Values

defaultColor → const CliColor
const CliColor('\x1B[0m')
black → const CliColor
const CliColor('\x1B[30m')
red → const CliColor
const CliColor('\x1B[31m')
green → const CliColor
const CliColor('\x1B[32m')
yellow → const CliColor
const CliColor('\x1B[33m')
blue → const CliColor
const CliColor('\x1B[34m')
magenta → const CliColor
const CliColor('\x1B[35m')
cyan → const CliColor
const CliColor('\x1B[36m')
white → const CliColor
const CliColor('\x1B[37m')
brightBlack → const CliColor
const CliColor('\x1B[90m')
brightRed → const CliColor
const CliColor('\x1B[91m')
brightGreen → const CliColor
const CliColor('\x1B[92m')
brightYellow → const CliColor
const CliColor('\x1B[93m')
brightBlue → const CliColor
const CliColor('\x1B[94m')
brightMagenta → const CliColor
const CliColor('\x1B[95m')
brightCyan → const CliColor
const CliColor('\x1B[96m')
brightWhite → const CliColor
const CliColor('\x1B[97m')
bgBlack → const CliColor
const CliColor('\x1B[40m')
bgRed → const CliColor
const CliColor('\x1B[41m')
bgGreen → const CliColor
const CliColor('\x1B[42m')
bgYellow → const CliColor
const CliColor('\x1B[43m')
bgBlue → const CliColor
const CliColor('\x1B[44m')
bgMagenta → const CliColor
const CliColor('\x1B[45m')
bgCyan → const CliColor
const CliColor('\x1B[46m')
bgWhite → const CliColor
const CliColor('\x1B[47m')
bgBrightBlack → const CliColor
const CliColor('\x1B[100m')
bgBrightRed → const CliColor
const CliColor('\x1B[101m')
bgBrightGreen → const CliColor
const CliColor('\x1B[102m')
bgBrightYellow → const CliColor
const CliColor('\x1B[103m')
bgBrightBlue → const CliColor
const CliColor('\x1B[104m')
bgBrightMagenta → const CliColor
const CliColor('\x1B[105m')
bgBrightCyan → const CliColor
const CliColor('\x1B[106m')
bgBrightWhite → const CliColor
const CliColor('\x1B[107m')

Properties

color String
final
hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<CliColor>
A constant List of the values in this enum, in order of their declaration.