isDeviceSupported static method

Future<bool> isDeviceSupported()

Returns true if device is capable of checking biometrics or is able to fail over to device credentials.

Returns a Future bool true or false:

Implementation

static Future<bool> isDeviceSupported() async =>
    (await _channel.invokeMethod<bool>('isDeviceSupported')) ?? false;