fullHeight static method

SizedBox fullHeight(
  1. Widget child
)

Implementation

static SizedBox fullHeight(Widget child) => SizedBox(
      child: child,
      height: double.infinity,
    );