h method

double h()

Scale height without context

Implementation

double h() {
  if (!ResponsiveConfig.initialized) {
    throw Exception(
        "ResponsiveConfig not initialized. Call ResponsiveConfig.init(context) first.");
  }
  return this * (ResponsiveConfig.height / ResponsiveConfig.baseHeight);
}