fractionHeight method
Set height in percent
Equivalent to:
FractionallySizedBox(
heightFactor: input
)
Implementation
Niku fractionHeight(double fraction) {
_widget = FractionallySizedBox(widthFactor: fraction, child: _widget);
return this;
}