bg method

NikuRaisedButton bg(
  1. Color color
)

Apply color to button background

Equivalent to

RaisedButton(
  color: input
)

Implementation

NikuRaisedButton bg(Color color) {
  this._color = color;

  return this;
}