Cache constructor
Cache({
- String keyPrefix = 'indexedCache',
- dynamic saveWaitAgainSeconds = 2,
- dynamic saveWaitSeconds = 2,
Implementation
Cache({
this.keyPrefix = 'indexedCache',
saveWaitAgainSeconds = 2,
saveWaitSeconds = 2,
}) : super(
key: keyPrefix,
saveWaitAgainSeconds: saveWaitAgainSeconds,
saveWaitSeconds: saveWaitSeconds,
) {
_indexLoad();
}