Package io.flutter.embedding.engine.dart
Class DartExecutor.DartEntrypoint
- java.lang.Object
-
- io.flutter.embedding.engine.dart.DartExecutor.DartEntrypoint
-
- Enclosing class:
- DartExecutor
public static class DartExecutor.DartEntrypoint extends Object
Configuration options that specify which Dart entrypoint function is executed and where to find that entrypoint and other assets required for Dart execution.
-
-
Field Summary
Fields Modifier and Type Field Description String
dartEntrypointFunctionName
The name of a Dart function to execute.String
dartEntrypointLibrary
The library or file location that contains the Dart entrypoint function.String
pathToBundle
The path within the AssetManager where the app will look for assets.
-
Constructor Summary
Constructors Constructor Description DartEntrypoint(String pathToBundle, String dartEntrypointFunctionName)
DartEntrypoint(String pathToBundle, String dartEntrypointLibrary, String dartEntrypointFunctionName)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DartExecutor.DartEntrypoint
createDefault()
Create a DartEntrypoint pointing to the default Flutter assets location with a default Dart entrypoint.boolean
equals(Object o)
int
hashCode()
String
toString()
-
-
-
Field Detail
-
pathToBundle
@NonNull public final String pathToBundle
The path within the AssetManager where the app will look for assets.
-
dartEntrypointLibrary
@Nullable public final String dartEntrypointLibrary
The library or file location that contains the Dart entrypoint function.
-
dartEntrypointFunctionName
@NonNull public final String dartEntrypointFunctionName
The name of a Dart function to execute.
-
-
Method Detail
-
createDefault
@NonNull public static DartExecutor.DartEntrypoint createDefault()
Create a DartEntrypoint pointing to the default Flutter assets location with a default Dart entrypoint.
-
-