deleteNotification method

Future<void> deleteNotification({
  1. required String notificationId,
})

Delete notification

Implementation

Future<void> deleteNotification({
  required String notificationId,
}) async {
  await _platform.deleteNotification(notificationId: notificationId);
}