Empty Sized Box with given height and/or width
static Widget emptySizedBox({double? height, double? width}) { return SizedBox( height: height, width: width, ); }