isSupported method

Future<bool> isSupported()

Determines if passkeys are supported on the current platform by checking if an authenticator is available.

Implementation

Future<bool> isSupported() async {
  return _authenticator.canAuthenticate();
}