height method

Niku height(
  1. double height
)

Set height of Widget

Equivalent to:

SizedBox(
  height: input
)

Implementation

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

  return this;
}