stopAuth method

  1. @override
Future<bool> stopAuth()
override

Stops any biometric authentication currently in progress.

Implementation

@override
Future<bool> stopAuth() async {
  final result = await methodChannel.invokeMethod<bool>('stopAuth');
  return result ?? false;
}