sizedBox method

Widget sizedBox(
  1. Widget widget
)

Implementation

Widget sizedBox(Widget widget) {
  return SizedBox(
      height: height,
      width: width,
      child: padding(
        widget,
        all: all,
        left: left,
        top: top,
        right: right,
        bottom: bottom,
      ));
}