cancelAllNotifications static method

Future<void> cancelAllNotifications()

Cancels all notifications.

Implementation

static Future<void> cancelAllNotifications() async {
  await Nylo.localNotifications((localNotifications) async {
    await localNotifications.cancelAll();
  });
}