onIntentExecution property

Stream<IntentExecutionRequest> get onIntentExecution

A stream of intent execution requests from the native platform.

This stream emits IntentExecutionRequest objects whenever iOS triggers an intent execution. Use this for reactive programming patterns or when you need to handle intents outside of the registered handler pattern.

Example:

AppIntentsPlatform.instance.onIntentExecution.listen((request) {
  print('Intent ${request.identifier} executed with ${request.params}');
});

Implementation

Stream<IntentExecutionRequest> get onIntentExecution {
  throw UnimplementedError(
      'onIntentExecution has not been implemented.');
}