height static method

SizedBox height(
  1. double height, {
  2. Widget? child,
})

创建指定高度的 SizedBox

@param height 高度值 @return 指定高度的 SizedBox 实例

Implementation

static SizedBox height(double height, {Widget? child}) {
  return SizedBox(height: height, child: child);
}