Level class
class Level extends ChromeEnum {
static const Level SYSTEM = const Level._('system');
static const Level DISPLAY = const Level._('display');
static const List<Level> VALUES = const[SYSTEM, DISPLAY];
const Level._(String str): super(str);
}
Extends
ChromeEnum > Level
Static Properties
Properties
Methods
String toString() #
inherited from ChromeEnum
Returns a string representation of this object.
docs inherited from Object
String toString() => value;