isAuthenticateUrl static method
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;
}
}