exists method

Future<bool> exists(
  1. String path
)

Whether the scoped key exists.

Implementation

Future<bool> exists(String path) {
  validateKey(path);
  return _backend.exists(key(path));
}