Wraps this widget in a square SizedBox with both width and height set to size.
size
Widget sizedSquare(double size) { return SizedBox(width: size, height: size, child: this); }