hBox method
Creates a SizedBox with specified height and the current widget as its child.
height
sets the height of the SizedBox.
Returns a SizedBox widget with the current widget as its child.
Implementation
SizedBox hBox(double height) => sizedBox(h: height);