onLaunchData property

Stream<ExecutionLaunchData> onLaunchData

Reports information needed to allow a single file to be launched.

This notification is not subscribed to by default. Clients can subscribe by including the value "LAUNCH_DATA" in the list of services passed in an execution.setSubscriptions request.

Implementation

Stream<ExecutionLaunchData> get onLaunchData {
  return _listen('execution.launchData', ExecutionLaunchData.parse);
}