screenPhysicalWidth property
double
get
screenPhysicalWidth
The Physical width of the screen
Implementation
double get screenPhysicalWidth {
final media = MediaQuery.of(context!);
return media.size.width * media.devicePixelRatio;
}