height property
double
get
height
Retrieves the height of the media query size in the current context, equivalent to MediaQuery.of(context).size.height. Note: This value updates when the screen is resized, such as in a browser or desktop window. Example: double height = context.height;
Implementation
double get height => mediaQuerySize.height;