getHandlerForUrl method
Gets a handler for the given URL, or null if no handler is available
Implementation
SpecializedSiteHandler? getHandlerForUrl(String url) {
for (final handler in _handlers) {
if (handler.canHandle(url)) {
return handler;
}
}
return null;
}