onPressed method

NikuRaisedButton onPressed(
  1. VoidCallback callback
)

Callback when button is pressed

Equivalent to

RaisedButton(
  onPressed: input
)

Implementation

NikuRaisedButton onPressed(VoidCallback callback) {
  this._onPressed = callback;

  return this;
}