fiveSixths static method

double fiveSixths(
  1. BuildContext context
)

Defines an height of 83.333333% of the screen size

Implementation

static double fiveSixths(BuildContext context) {
  return (MediaQuery.of(context).size.height * 5) / 6;
}