w method

Widget w(
  1. double width, {
  2. Key? key,
})

All available widths

SizedBox widget with a specified width

Implementation

Widget w(double width, {Key? key}) => SizedBox(
      key: key,
      width: width,
      child: this,
    );