deleteKey method
Delete the key pair from secure storage.
Implementation
@override
Future<void> deleteKey() async {
try {
await _methodChannel.invokeMethod<void>('deleteKey');
} on PlatformException catch (e) {
throw _convertPlatformException(e);
}
}