isAuthenticateUrl static method

Future<bool> isAuthenticateUrl(
  1. 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;
  }
}