fullHeight method

Niku fullHeight()

Apply full width to self

Equivalent to:

SizedBox(
  height: double.infinity
)

Implementation

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