wh method

Widget wh(
  1. double width,
  2. double height
)

All Size Width - Height

SizedBox widget with a specified width & height

Implementation

Widget wh(double width, double height) => SizedBox(
      key: key,
      width: width,
      height: height,
      child: this,
    );