fallbackSuccess static method
BiometricResult
fallbackSuccess({
- BiometricFallback method = BiometricFallback.deviceCredential,
- BiometricSession? session,
- String? token = 'fake-token',
A successful fallback authentication.
Implementation
static BiometricResult fallbackSuccess({
BiometricFallback method = BiometricFallback.deviceCredential,
BiometricSession? session,
String? token = 'fake-token',
}) =>
BiometricResult.fallbackSuccess(
methodUsed: method,
session: session ?? FakeBiometricSession.deviceCredential(),
token: token,
);