hasHandlerForUrl method

bool hasHandlerForUrl(
  1. String url
)

Checks if there is a handler for the given URL

Implementation

bool hasHandlerForUrl(String url) {
  return getHandlerForUrl(url) != null;
}