disabled method

NikuIconButton disabled(
  1. Color color
)

Background color of button when disabled

Equivalent to

IconButton(
  disabledColor: input
)

Implementation

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

  return this;
}