full static method

double full(
  1. BuildContext context
)

Defines an height of 100% of the screen size

Implementation

static double full(BuildContext context) {
  return MediaQuery.of(context).size.height;
}