setBulkMetadata abstract method

Future<void> setBulkMetadata({
  1. required String storeName,
  2. required Map<String, String> kvs,
})

Set multiple key-value pairs in the metadata for the specified store

Note that this operation will overwrite any existing value for each specified key.

Implementation

Future<void> setBulkMetadata({
  required String storeName,
  required Map<String, String> kvs,
});