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