CachedData<T> constructor Null safety

CachedData<T>(
  1. {required T value,
  2. bool isRemoved = false,
  3. int ts = 0}
)

Implementation

CachedData({
  required this.value,
  this.isRemoved = false,
  this.ts = 0,
});