whFull method
SizedBox widget with full width
& height
of the MediaQuery width & height
Implementation
Widget whFull(BuildContext context, {Key? key}) => SizedBox(
key: key,
width: context.screenWidth,
height: context.screenHeight,
child: this,
);