DataCacheOptions.mediumLived constructor
DataCacheOptions.mediumLived()
Creates DataCacheOptions for medium-lived cache entries
Implementation
factory DataCacheOptions.mediumLived() {
return const DataCacheOptions(
maxAge: Duration(hours: 1),
compress: true,
storageType: 'both',
);
}