onLongPressed method

NikuButton onLongPressed(
  1. VoidCallback callback
)

Callback when button is long pressed

Equivalent to

TextButton(
  onLongPressed: input
)

Implementation

NikuButton onLongPressed(VoidCallback callback) {
  this._onLongPressed = callback;

  return this;
}