importStores abstract method

ImportResult importStores({
  1. required String path,
  2. required ImportConflictStrategy strategy,
  3. required List<String>? storeNames,
})

Load the specified stores (or all stores if null) from the archive file at path into the current root, using strategy where there are conflicts

See RootExternal for more information about expected behaviour and errors.

See ImportResult for information about how to handle the response.

Implementation

ImportResult importStores({
  required String path,
  required ImportConflictStrategy strategy,
  required List<String>? storeNames,
});