tap method

Future<bool> tap()

tap the notification return false if not exits

Implementation

Future<bool> tap() {
  if (canTap == null || canTap == false)
    throw Exception("The notification can not be tapped");
  return NotificationsListener.tapNotification(uniqueId!);
}