delete method
Deletes a value from the secure keystore.
Platform implementations should override this method to provide platform-specific secure storage functionality.
Parameters
key- The unique identifier of the value to deletestorageName- Optional storage name for organizing keys
Implementation
@override
Future<void> delete(String key, {String? storageName}) async {
await methodChannel.invokeMethod('delete', {
'key': key,
'storageName': storageName,
});
}