children method

NikuRow children(
  1. List<Widget> children
)

Append all of children

Equivalent to

Row(
  children: [
    ...
    input
  ]
)

Implementation

NikuRow children(List<Widget> children) {
  this._children.addAll(children);

  return this;
}