w16 method

Widget w16(
  1. BuildContext context, {
  2. Key? key,
})

SizedBox widget with 16% width of the MediaQuery width

Implementation

Widget w16(BuildContext context, {Key? key}) => SizedBox(
      key: key,
      width: context.percentWidth * 16,
      child: this,
    );