withWidth method

Widget withWidth(
  1. double? width
)

Add width

Implementation

Widget withWidth(double? width) {
  return width == null ? this : SizedBox(
    width: width,
    child: this,
  );
}