size property

int get size

Returns the total size _cache occupies.

Implementation

static int get size =>
    _cache.values.map((e) => e.lengthInBytes).fold<int>(0, (p, e) => p + e);