notifications 2.0.0
notifications: ^2.0.0 copied to clipboard
A plugin for tracking notifications on the device. Works exclusively for Android.
Notifications #
A plugin for monitoring notification on Android.
Install #
Add notifications as a dependency in pubspec.yaml.
For help on adding as a dependency, view the documentation.
Usage #
All incoming data points are streamed with a StreamSubscription which is set up by calling the listen() method on the notificationStream stream object.
Given a method _onData(ScreenStateEvent event) the subscription can be set up as follows:
Notifications _notifications;
StreamSubscription<NotificationEvent> _subscription;
...
void onData(NotificationEvent event) {
print(event);
}
void startListening() {
_notifications = new Notifications();
try {
_subscription = _notifications!.notificationStream!.listen(onData);
} on NotificationException catch (exception) {
print(exception);
}
}
The stream can also be cancelled again by calling the cancel() method:
void stopListening() {
_subscription?.cancel();
}
The NotificationEvent provides:
- the title
- the message
- package name
- timestamp
of each notification.