h method

double h(
  1. BuildContext context
)

.h can be used to assign height.

Implementation

double h(BuildContext context) {
  var _mediaQuery = MediaQuery.of(context).size;
  var divide = (mHeight ?? 0) / this;
  var height1 = _mediaQuery.height / divide;
  return height1;
}