fullSize static method

dynamic fullSize(
  1. double size
)

Implementation

static fullSize(double size) => (Widget child) => SizedBox(
      child: child,
      width: double.infinity,
      height: double.infinity,
    );