w method

Widget w(
  1. double width
)

Sets a fixed width for the widget.

Implementation

Widget w(double width) => SizedBox(
      width: width,
      child: this,
    );