WindowType class
'shell' is the default window type. 'panel' is managed by the OS (Currently experimental, Ash only).
class WindowType extends ChromeEnum { static const WindowType SHELL = const WindowType._('shell'); static const WindowType PANEL = const WindowType._('panel'); static const List<WindowType> VALUES = const[SHELL, PANEL]; const WindowType._(String str): super(str); }
Extends
ChromeEnum > WindowType
Static Properties
const WindowType PANEL #
static const WindowType PANEL = const WindowType._('panel')
const WindowType SHELL #
static const WindowType SHELL = const WindowType._('shell')
const List<WindowType> VALUES #
static const List<WindowType> VALUES = const[SHELL, PANEL]
Properties
Methods
String toString() #
inherited from ChromeEnum
Returns a string representation of this object.
docs inherited from Object
String toString() => value;