highlightElevation method

NikuRaisedButton highlightElevation(
  1. double elevation
)

Set elevation when highlighted

Equivalent to

RaisedButton(
  highlightElevation: input
);

Implementation

NikuRaisedButton highlightElevation(double elevation) {
  this._highlightElevation = elevation;

  return this;
}