fullWidth method

Niku fullWidth()

Apply full width to self

Equivalent to:

SizedBox(
  width: double.infinity,
)

Implementation

Niku fullWidth() {
  _widget = SizedBox(width: double.infinity, child: _widget);

  return this;
}