canAuthenticate method

  1. @Deprecated('This function will now always return true.')
Future<bool> canAuthenticate()

Returns true if passkeys are supported by the device We have deprecated this function (it will now always return true).

Implementation

@Deprecated('This function will now always return true.')
Future<bool> canAuthenticate() async {
  return true;
}