wh16 method

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

SizedBox widget with 16% width & height of the MediaQuery width & height

Implementation

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