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