h static method

double h(
  1. double base,
  2. bool mw
)

Implementation

static double h(double base, bool mw) {
  final m = _m;
  if (mw && m.isInMultiWindowMode) return base;
  return base * m.screenHeightFactor;
}