heightPercent static method

FloretParent<FractionallySizedBox> heightPercent(
  1. double height
)

Implementation

static FloretParent<FractionallySizedBox> heightPercent(double height) =>
    (Widget child) => FractionallySizedBox(
          child: child,
          heightFactor: height / 100,
        );