wh10 method
SizedBox widget with 10% width
& height
of the MediaQuery width & height
Implementation
Widget wh10(BuildContext context, {Key? key}) => SizedBox(
key: key,
width: context.percentWidth * 10,
height: context.percentHeight * 10,
child: this,
);