prependChildren method

NikuStack prependChildren(
  1. List<Widget> children
)

Prepend all of children

Equivalent to

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

Implementation

NikuStack prependChildren(List<Widget> children) {
  this._children.insertAll(0, children);

  return this;
}