sizedBox method

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

Wraps this widget with a SizedBox with custom WIDTH and HEIGHT

Implementation

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