getHeightInsideSafeArea method

double getHeightInsideSafeArea(
  1. BuildContext context
)

Implementation

double getHeightInsideSafeArea(BuildContext context){
  return DeviceTools.getHeight(context)
      - NotchBarConstant.getHeight(context)
      - StatusBarConstant.getHeight(context) ;
}