removeMetadata abstract method

Future<String?> removeMetadata({
  1. required String storeName,
  2. 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?> removeMetadata({
  required String storeName,
  required String key,
});