eventChannel property
Implementation
final eventChannel = EventChannel("mobilistenNotificationEvents")
.receiveBroadcastStream()
.map((event) => NotificationEvent(
NotificationAction.from(event["eventName"]),
_getNotificationPayload(event["payload"])));