h property

double get h

Implementation

double get h {
  if (SizeConfig.screenHeight == 0) {
    throw FlutterError(
        'SizeConfig has not been initialized. Call SizeConfig.init(context) before using it.');
  }
  return SizeConfig.height(toDouble());
}