wh56 method

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

SizedBox widget with 56% width & height of the MediaQuery width & height

Implementation

Widget wh56(BuildContext context, {Key? key}) => SizedBox(
      key: key,
      width: context.percentWidth * 56,
      height: context.percentHeight * 56,
      child: this,
    );