w100 method

Widget w100()

Sets the width to 100% (double.infinity).

Implementation

Widget w100() => SizedBox(
      width: double.infinity,
      child: this,
    );