getCachedComputedValue function

double? getCachedComputedValue(
  1. RenderStyle renderStyle,
  2. String propertyName
)

Implementation

double? getCachedComputedValue(RenderStyle renderStyle, String propertyName) {
  if (renderBoxInLayoutHashCodes.isNotEmpty) {
    return _cachedComputedValue[renderStyle.hashCode]?[propertyName];
  }
  return null;
}