onLongPressed method
Callback when button is long pressed
Equivalent to
FlatButton(
onLongPressed: input
)
Implementation
NikuFlatButton onLongPressed(VoidCallback callback) {
this._onLongPressed = callback;
return this;
}
Callback when button is long pressed
Equivalent to
FlatButton(
onLongPressed: input
)
NikuFlatButton onLongPressed(VoidCallback callback) {
this._onLongPressed = callback;
return this;
}