h method
.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;
}
.h can be used to assign height
double h(BuildContext context) {
var _mediaQuery = MediaQuery.of(context).size;
var divide = (mHeight ?? 0) / this;
var height1 = _mediaQuery.height / divide;
return height1;
}