wh48 method
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,
);