Wraps this widget in a SizedBox with the given width and/or height.
width
height
Widget sized({double? width, double? height}) { return SizedBox(width: width, height: height, child: this); }