h property

double get h

Implementation

double get h {
  BuildContext? context = NavigationService.globalNavigatorKey.currentContext;
  if(context == null) {
    log("Error No Init Context Founded");
    return 0;
  }
  return MediaQuery.sizeOf(context)
        .height *
        this;
}