remove method

Removes an object specified by key with optional StorageRemoveOptions, and returns a StorageRemoveOperation.

Implementation

StorageRemoveOperation remove({
  required String key,
  StorageRemoveOptions? options,
}) {
  return identifyCall(
    StorageCategoryMethod.remove,
    () => defaultPlugin.remove(key: key, options: options),
  );
}