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