onPressed method
Callback when button is pressed
Equivalent to
OutlineButton(
onPressed: input
)
Implementation
NikuOutlineButton onPressed(VoidCallback callback) {
this._onPressed = callback;
return this;
}
Callback when button is pressed
Equivalent to
OutlineButton(
onPressed: input
)
NikuOutlineButton onPressed(VoidCallback callback) {
this._onPressed = callback;
return this;
}