h method

double h(
  1. BuildContext context
)

Height percentage (based on screen height)

Implementation

double h(BuildContext context) =>
    MediaQuery.of(context).size.height * (this / 100);