fullHeight method

Niku fullHeight()

Apply full width to self

Equivalent to:

SizedBox(
  height: double.infinity
)

Implementation

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

  return this;
}