A box with a specified size.
Widget sized({ double? width, double? height, Key? key, }) { return SizedBox( key: key, width: width, height: height, child: this, ); }