BoundedLruSet<T> constructor

BoundedLruSet<T>({
  1. required int maxSize,
})

Implementation

BoundedLruSet({required this.maxSize}) : assert(maxSize >= 0);