isAuthenticateUrl static method Null safety
- String url
Returns whether a URL is a valid Authenticate URL or not.
url
A URL String
Implementation
static Future<bool> isAuthenticateUrl(String url) async {
try {
return await _channel.invokeMethod('isAuthenticateUrl', {'url': url});
} on Exception {
rethrow;
}
}