findMaxHeight method
Implementation
double findMaxHeight(Map<TextLayoutItem, Size> intrinsicSizes) {
var max = 0.0;
for (final size in intrinsicSizes.values) {
if (size.height > max) max = size.height;
}
return max;
}
double findMaxHeight(Map<TextLayoutItem, Size> intrinsicSizes) {
var max = 0.0;
for (final size in intrinsicSizes.values) {
if (size.height > max) max = size.height;
}
return max;
}