h method

double h()

Scale height without context

Implementation

double h() {
  assert(ResponsiveConfig.initialized,
      "ResponsiveConfig not initialized. Call ResponsiveConfig.init(context) first.");
  return toDouble() *
      (ResponsiveConfig._height / ResponsiveConfig.baseHeight);
}