widthBox method

SizedBox widthBox(
  1. double width
)

尺寸控件(宽度) >>>

Implementation

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