w method

Widget w(
  1. double value
)

Implementation

Widget w(double value) {
  return SizedBox(
    width: value,
    child: this,
  );
}