heightBox method

SizedBox heightBox(
  1. double height
)

尺寸控件(高度) >>>

Implementation

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