deleteKeys method
Deletes the stored biometric key if present.
Implementation
@override
Future<bool?> deleteKeys() async {
try {
return methodChannel.invokeMethod<bool>('deleteKeys');
} on PlatformException catch (e) {
debugPrint(e.message);
return false;
}
}