data property

T? data

Returns the cached data or null if expired

Implementation

T? get data => hasExpired ? null : _data;