sizedBox method

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

Implementation

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