appendChild method

NikuRow appendChild(
  1. Widget child
)

Append child

Equivalent to

Row(
  children: [
    ...
    input
  ]
)

Implementation

NikuRow appendChild(Widget child) {
  this._children.add(child);

  return this;
}