w48 method

Widget w48(
  1. BuildContext context, {
  2. Key? key,
})

SizedBox widget with 48% width of the MediaQuery width

Implementation

Widget w48(BuildContext context, {Key? key}) => SizedBox(
      key: key,
      width: context.percentWidth * 48,
      child: this,
    );