hoverElevation method

NikuRaisedButton hoverElevation(
  1. double elevation
)

Set elevation when highlighted

Equivalent to

RaisedButton(
  hoverElevation: input
);

Implementation

NikuRaisedButton hoverElevation(double elevation) {
  this._elevation = elevation;

  return this;
}