cancelAllNotifications static method
Cancel all notifications
Implementation
static Future<void> cancelAllNotifications() async {
await Nylo.localNotifications(
(FlutterLocalNotificationsPlugin localNotifications) async {
await localNotifications.cancelAll();
});
}