container method

Niku container()

Add new container to widget

Equivalent to:

Container()

Implementation

Niku container() {
  _widget = Container(
    child: _widget,
  );

  return this;
}