NiceViewCache constructor

NiceViewCache({
  1. required NiceViewCacheStorage storage,
  2. Duration ttl = const Duration(hours: 1),
})

Implementation

NiceViewCache({
  required this.storage,
  this.ttl = const Duration(hours: 1),
});