withHeight method

Widget withHeight(
  1. double? height
)

Add height

Implementation

Widget withHeight(double? height) {
  return height == null ? this : SizedBox(
    height: height,
    child: this,
  );
}