width method

Niku width(
  1. double width
)

Set width of widget

Equivalent to:

SizedBox(
  width: input
)

Implementation

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