disabled method

NikuRaisedButton disabled(
  1. Color color
)

Background color of button when disabled

Equivalent to

RaisedButton(
  disabledColor: input
)

Implementation

NikuRaisedButton disabled(Color color) {
  this._disabledColor = color;

  return this;
}