转换为 SizedBox,固定尺寸盒子
SizedBox asSizedBox({ double? width, double? height, }) { return SizedBox( width: width, height: height, child: this, ); }