BasaltExtension enum
The ext.basalt.* VM service extensions that make up the inspector protocol.
This is the single source of truth for the method names, shared by the host (which registers each one) and every client (which calls them). Consumers should reference method rather than hard-coding the string literals.
Values
- listInstances → const BasaltExtension
-
Lists the connections registered for inspection.
const BasaltExtension('ext.basalt.listInstances') - getSchema → const BasaltExtension
-
Introspects one instance's schema.
const BasaltExtension('ext.basalt.getSchema') - getTableData → const BasaltExtension
-
Reads one page of rows from a table.
const BasaltExtension('ext.basalt.getTableData') - updateRow → const BasaltExtension
-
Updates a single row identified by its key columns.
const BasaltExtension('ext.basalt.updateRow') - runSql → const BasaltExtension
-
Runs an arbitrary SQL statement.
const BasaltExtension('ext.basalt.runSql')
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- method → String
-
Fully-qualified VM service extension method name (e.g.
ext.basalt.getSchema).final - name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - 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
Constants
-
values
→ const List<
BasaltExtension> - A constant List of the values in this enum, in order of their declaration.