focusElevation method

NikuRaisedButton focusElevation(
  1. double elevation
)

Set elevation when focused

Equivalent to

RaisedButton(
  focusElevation: input
);

Implementation

NikuRaisedButton focusElevation(double elevation) {
  this._focusElevation = elevation;

  return this;
}