appActionReceiver method

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

Implementation

@override
Stream<ActionNotification> appActionReceiver() async*{
  await for (final actionNotification in eventChannel.receiveBroadcastStream()){
    yield ActionNotification.fromMap(actionNotification);
  }
}