wh48 method

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

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

Implementation

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