delete method

Future<void> delete(
  1. String path
)

Delete the scoped key. No-op when absent.

Implementation

Future<void> delete(String path) {
  validateKey(path);
  return _backend.delete(key(path));
}