setBulk method

Future<void> setBulk({
  1. 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> setBulk({
  required Map<String, String> kvs,
}) =>
    FMTCBackendAccess.internal
        .setBulkMetadata(storeName: _storeName, kvs: kvs);