prepend method

NikuRow prepend(
  1. Widget child
)

Prepend child

Equivalent to

Row(
  children: [
    input,
    ...
  ]
)

Implementation

NikuRow prepend(Widget child) {
  this._children.insert(0, child);

  return this;
}