deleteKey method

  1. @override
Future<void> deleteKey()
override

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);
  }
}