Wraps this widget in a SizedBox to apply fixed width and/or height.
Widget size({double? w, double? h}) { return SizedBox(width: w, height: h, child: this); }