bg method

NikuFlatButton bg(
  1. Color color
)

Apply color to button background

Equivalent to

FlatButton(
  color: input
)

Implementation

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

  return this;
}