receiveBroadcastStream method

  1. @override
Stream<android_content_Intent> receiveBroadcastStream(
  1. [dynamic arguments]
)
override

Sets up a broadcast stream for receiving events on this channel.

Returns a broadcast Stream which emits events to listeners as follows:

  • a decoded data event (possibly null) for each successful event received from the platform plugin;
  • an error event containing a PlatformException for each error event received from the platform plugin.

Errors occurring during stream activation or deactivation are reported through the FlutterError facility. Stream activation happens only when stream listener count changes from 0 to 1. Stream deactivation happens only when stream listener count changes from 1 to 0.

Implementation

@override
Stream<android_content_Intent> receiveBroadcastStream([dynamic arguments]) {
  return super
      .receiveBroadcastStream(arguments)
      .map((event) => android_content_Intent()..refId = event);
}