setMaxSize method

Future<void> setMaxSize(
  1. int? size
)

Sets the maximum allowed size of the cache.

Implementation

Future<void> setMaxSize(int? size) async {
  info.value.maxSize = size;
  info.refresh();
  await _cacheLocal?.upsert(info.value);
}