storedPath static method

String? storedPath(
  1. String key, {
  2. UStorageBucket bucket = UStorageBucket.support,
})

Where key's bytes live inside backend — the ciphertext for vault entries, an IndexedDB key on the web. For diagnostics and tests; read entries through getBytes / read.

Implementation

static String? storedPath(String key, {UStorageBucket bucket = UStorageBucket.support}) => _live(key, bucket) == null ? null : _pathFor(bucket, key);