fractionHeight method

Niku fractionHeight(
  1. double fraction
)

Set height in percent

Equivalent to:

FractionallySizedBox(
  heightFactor: input
)

Implementation

Niku fractionHeight(double fraction) =>
    Niku(FractionallySizedBox(widthFactor: fraction, child: this._widget));