call method

StoreDirectory call(
  1. String storeName
)

Get a StoreDirectory by name, without creating it automatically

Use .manage.create() to create it asynchronously. Alternatively, use [] to get a store by name and automatically create it synchronously.

Implementation

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