deleteStoredNotification static method

Future<void> deleteStoredNotification(
  1. int index
)

Delete stored notifications at index

Implementation

static Future<void> deleteStoredNotification(int index) async {
  print('deleteStoredNotification $index - appier_flutter.dart');
  await AppierFlutterPlatform.instance.deleteStoredNotification(index);
}