call method

StoreDirectory call(
  1. String storeName
)

Get a StoreDirectory by store name

Does not automatically create the appropriate store, unlike []. Therefore, use .manage.createAsync() afterward if necessary.

Implementation

StoreDirectory call(String storeName) =>
    StoreDirectory(rootDirectory, storeName, autoCreate: false);