adjustedHeight static method

double? adjustedHeight(
  1. double? fontSize
)

Implementation

static double? adjustedHeight(double? fontSize) {
  return (_fontSize2HeightMap[fontSize] ?? 24) / (fontSize ?? 16);
}