prepend method

NikuStack prepend(
  1. Widget child
)

Prepend child

Equivalent to

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

Implementation

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

  return this;
}