Dart Documentationchrome.powerLevel

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

const Level DISPLAY #

static const Level DISPLAY = const Level._('display')

const Level SYSTEM #

static const Level SYSTEM = const Level._('system')

const List<Level> VALUES #

static const List<Level> VALUES = const[SYSTEM, DISPLAY]

Properties

final String value #

inherited from ChromeEnum
final String value

Methods

String toString() #

inherited from ChromeEnum

Returns a string representation of this object.

docs inherited from Object
String toString() => value;