brightness method

NikuRaisedButton brightness(
  1. Brightness brightness
)

Set brightness of background

Equivalent to

RaisedButton(
  colorBrightness: input
)

Implementation

NikuRaisedButton brightness(Brightness brightness) {
  this._colorBrightness = brightness;

  return this;
}