remove method

Future<String?> remove({
  1. required String key,
})

Remove the specified key from the metadata for the specified store

Returns the value associated with key before it was removed, or null if it was not present.

Implementation

Future<String?> remove({
  required String key,
}) =>
    FMTCBackendAccess.internal
        .removeMetadata(storeName: _storeName, key: key);