sharedMapCached method

FutureOr<SharedMap<K, V>> sharedMapCached({
  1. Duration? timeout,
})

Returns a cached version of sharedMap. See SharedMap.cached.

Implementation

FutureOr<SharedMap<K, V>> sharedMapCached({Duration? timeout}) =>
    sharedMapAsync.cached(timeout: timeout);