whOneThird method
SizedBox widget with one-third or 33.33% width
& height
of the MediaQuery width & height
Implementation
Widget whOneThird(BuildContext context, {Key? key}) => SizedBox(
key: key,
width: context.percentWidth * 33.333333,
height: context.percentHeight * 33.333333,
child: this,
);