heightFactor static method

FloretParent<FractionallySizedBox> heightFactor(
  1. double height
)

Implementation

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