clearNotification method
- String notification
Clears a specific notification.
The notification parameter is the notification ID.
Implementation
Future<void> clearNotification(String notification) async {
return await _module.channel
.invokeMethod('push#clearNotification', notification);
}