ColorUtil class

Constructors

ColorUtil()

Properties

hashCode int
The hash code for this object.
no setterinherited
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

Static Methods

color(String colorString) Color
Parse the color string, and return the corresponding color. If the string cannot be parsed, throws an ArgumentError
intColor(String? colorString) int
Parse the color string, and return the corresponding color-int. If the string cannot be parsed, throws an ArgumentError

Constants

BLACK → const int
BLUE → const int
CYAN → const int
DKGRAY → const int
GRAY → const int
GREEN → const int
LTGRAY → const int
MAGENTA → const int
RED → const int
sColorNameMap → const Map<String, int>
TRANSPARENT → const int
WHITE → const int
YELLOW → const int