CacheStorage constructor

CacheStorage(
  1. String name, {
  2. dynamic debug = false,
})

Implementation

CacheStorage(this.name, {debug = false}) {
  Hive.initFlutter().then(completer.complete);
  this.debug = debug;
}