h method

Widget h(
  1. double value
)

Implementation

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