sizedBox method

Widget sizedBox({
  1. Key? key,
  2. double? height,
  3. double? width,
})

Implementation

Widget sizedBox({Key? key, double? height, double? width}) {
  return SizedBox(height: height, width: width, child: this);
}