secureDeleteAll method

Future<void> secureDeleteAll()

Delete all secure storage entries

Implementation

Future<void> secureDeleteAll() async {
  try {
    await methodChannel.invokeMethod<void>('secureDeleteAll');
  } on PlatformException catch (e) {
    throw MCPSecureStorageException(
        'Failed to delete all secure values: ${e.message}', e.details);
  }
}