ExecutionLaunchDataParams class

execution.launchData params

{ "file": FilePath "kind": optional ExecutableKind "referencedFiles": optional List

Clients may not extend, implement or mix-in this class.

Constructors

ExecutionLaunchDataParams(String file, {ExecutableKind? kind, List<String>? referencedFiles})
ExecutionLaunchDataParams.fromJson(JsonDecoder jsonDecoder, String jsonPath, Object? json)
factory
ExecutionLaunchDataParams.fromNotification(Notification notification)
factory

Properties

file String
The file for which launch data is being provided. This will either be a Dart library or an HTML file.
getter/setter pair
hashCode int
The hash code for this object.
no setteroverride
kind ExecutableKind?
The kind of the executable file. This field is omitted if the file is not a Dart file.
getter/setter pair
referencedFiles List<String>?
A list of the Dart files that are referenced by the file. This field is omitted if the file is not an HTML file.
getter/setter pair
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
toJson() Map<String, Object>
Returns a JSON presentation of the object.
toNotification() Notification
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override