canHandle method

bool canHandle(
  1. String? path
)

Implementation

bool canHandle(String? path) {
  if (path == null) return false;

  return _handlerForPath(path) != null;
}