FoundationServiceExtensions enum
Service extension constants for the foundation library.
These constants will be used when registering service extensions in the framework, and they will also be used by tools and services that call these service extensions.
The String value for each of these extension names should be accessed by
calling the .name
property on the enum value.
Values
- reassemble → const FoundationServiceExtensions
-
Name of service extension that, when called, will cause the entire application to redraw.
See also:
- BindingBase.initServiceExtensions, where the service extension is registered.
- exit → const FoundationServiceExtensions
-
Name of service extension that, when called, will terminate the Flutter application.
See also:
- BindingBase.initServiceExtensions, where the service extension is registered.
- connectedVmServiceUri → const FoundationServiceExtensions
-
Name of service extension that, when called, will get or set the value of connectedVmServiceUri.
See also:
- connectedVmServiceUri, which stores the uri for the connected vm service protocol.
- BindingBase.initServiceExtensions, where the service extension is registered.
- activeDevToolsServerAddress → const FoundationServiceExtensions
-
Name of service extension that, when called, will get or set the value of activeDevToolsServerAddress.
See also:
- activeDevToolsServerAddress, which stores the address for the active DevTools server used for debugging this application.
- BindingBase.initServiceExtensions, where the service extension is registered.
- platformOverride → const FoundationServiceExtensions
-
Name of service extension that, when called, will change the value of defaultTargetPlatform, which controls which TargetPlatform that the framework will execute for.
See also:
- debugDefaultTargetPlatformOverride, which is the flag that this service extension exposes.
- BindingBase.initServiceExtensions, where the service extension is registered.
- brightnessOverride → const FoundationServiceExtensions
-
Name of service extension that, when called, will override the platform Brightness.
See also:
- debugBrightnessOverride, which is the flag that this service extension exposes.
- BindingBase.initServiceExtensions, where the service extension is registered.
Properties
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<
FoundationServiceExtensions> - A constant List of the values in this enum, in order of their declaration.