eah property

double get eah

get the percent of the height of the screen and height of the design screen

Implementation

double get eah {
  assert(
      _screenHeight != null, 'Must call EasyResponsive().initialize() first');

  return _screenHeight! / _designScreenHeight!;
}