storeFactory function

StoreImpl storeFactory({
  1. bool storageJson = true,
})

Implementation

StoreImpl storeFactory({bool storageJson = true}) {
  return StoreImpl(storageJson: storageJson);
}