height method

SizedBox height(
  1. double height
)

Returns a new constrained widget with the given height.

Implementation

SizedBox height(double height) {
  return SizedBox(height: height, child: this);
}