cancelAllNotifications static method

Future<void> cancelAllNotifications()

Cancel all notifications

Implementation

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