wThreeForth method
SizedBox widget with three-forth or 75% width
of the MediaQuery width
Implementation
Widget wThreeForth(BuildContext context, {Key? key}) => SizedBox(
key: key,
width: context.percentWidth * 75,
child: this,
);