wh64 method

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

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

Implementation

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