Prepend child
Equivalent to
Row( children: [ input, ... ] )
NikuRow prepend(Widget child) { this._children.insert(0, child); return this; }