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