LocalCacheObject constructor

LocalCacheObject(
  1. String id, {
  2. CacheType type = CacheType.json,
  3. String channel = r'_$DefaultChannel',
  4. Map<String, dynamic>? value,
})

Implementation

LocalCacheObject(
  this.id, {
  this.type = CacheType.json,
  this.channel = r'_$DefaultChannel',
  Map<String, dynamic>? value,
}) : this._value = value;