cache property

FlexLayoutCache get cache

Implementation

FlexLayoutCache get cache {
  assert(
    _cache != null,
    'cache is only available after layout (not dry layout)',
  );
  return _cache!;
}