removeNotification method

Future<void> removeNotification()

Implementation

Future<void> removeNotification() async {
  if (packageName != null && id != null) {
    AndroidNotificationListener.removeNotification(packageName!, id!);
  }
}