getCachedComputedValue function

double? getCachedComputedValue(
  1. int hashCode,
  2. String propertyName
)

Implementation

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