Check if a URL is preapproved.
bool isPreapprovedUrl(Uri uri) { final host = uri.host.toLowerCase(); return preapprovedHosts.contains(host); }