canCheckBiometrics property

Future<bool> canCheckBiometrics

Returns true if device is capable of checking biometrics

Returns a Future bool true or false:

Implementation

static Future<bool> get canCheckBiometrics async =>
    (await _channel.invokeListMethod<String>('getAvailableBiometrics'))!
        .isNotEmpty;