setElevation method
Set all elevation property
Equivalent to
RaisedButton(
elevation: elevation,
disabled: disabled,
focus: focus,
hover: hover,
highlight: highlight
);
Implementation
NikuRaisedButton setElevation(
{double? elevation,
double? disabled,
double? focus,
double? hover,
double? highlight}) {
this._elevation = elevation;
this._disabledElevation = disabled;
this._focusElevation = focus;
this._hoverElevation = hover;
this._highlightElevation = highlight;
return this;
}