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