disabledBorderColor method

NikuOutlineButton disabledBorderColor(
  1. Color color
)

Set Set border color when disabled

Equivalent to

OutlineButton(
  disabledBorderColor: input
);

Implementation

NikuOutlineButton disabledBorderColor(Color color) {
  this._disabledBorderColor = color;

  return this;
}