h method

Widget h(
  1. double height
)

All available heights SizedBox widget with a specified height

Implementation

Widget h(double height) => SizedBox(
      key: key,
      height: height,
      child: this,
    );