height static method

FloretParent<SizedBox> height(
  1. double height
)

Implementation

static FloretParent<SizedBox> height(double height) =>
    (Widget child) => SizedBox(
          child: child,
          height: height,
        );