height method

Widget height(
  1. double value
)

Implementation

Widget height(double value) {
  return SizedBox(
    height: value,
    child: this,
  );
}