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