eaw property

double get eaw

get the percent of the width of the screen and width of the design screen

Implementation

double get eaw {
  assert(
      _screenWidth != null, 'Must call EasyResponsive().initialize() first');
  return _screenWidth! / _designScreenWidth!;
}