height method

Niku height(
  1. double height
)

Set height of Widget

Equivalent to:

SizedBox(
  height: input
)

Implementation

Niku height(double height) =>
    Niku(SizedBox(height: height, child: this._widget));