EmbedMode enum

The type of embedding for this DevTools instance.

The embed mode will be specified by the IDE or tool that is embedding DevTools by setting query parameters in the DevTools URI.

'embedMode=many' => EmbedMode.embedMany, which means that many DevTools screens will be embedded in this view. This will result in the top level tab bar being present. Any screens that should be hidden in this mode will be specified by the 'hide' query parameter.

'embedMode=one' => EmbedMode.embedOne, which means that a single DevTools screen will be embedded in this view. This will result in the top level tab bar being hidden, and only the screen specified by the URI path will be shown.

Inheritance
Available extensions

Values

embedOne → const EmbedMode
embedMany → const EmbedMode
none → const EmbedMode

Properties

embedded bool
no setter
hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
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

fromArgs(Map<String, String?> args) EmbedMode

Constants

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