appActionReceiver method

  1. @override
Stream<ActionNotification> appActionReceiver()
override

Implementation

@override
Stream<ActionNotification> appActionReceiver() {
  return eventChannel.receiveBroadcastStream().map(
        (event) => ActionNotification.fromMap(event),
      );
}