Widget conditionedSize({double? height, double? width}) { if (height != null || width != null) { return SizedBox( height: height, width: width, child: this, ); } return this; }