Metadata
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
final md = FMTCStore('storeName').metadata;
await md.read; // Retrieve (all) the stored metadata
await md.set(); // Set a single key-value pair (overwriting any existing value for the key)
await md.setBulk(); // Set multiple key-value pairs (overwriting any existing value for each key)
await md.remove(); // Remove the specified key (and corresponding value)
await md.reset(); // Remove all keys (and values)