store method

Cache store(
  1. String store
)

Set where to store the cache. The name you set in the cache drivers configuration Example drivers => {'file' : FileCacheDriver()}, then store name is file

Implementation

Cache store(String store) {
  _store = store;
  return this;
}