shape method

NikuRaisedButton shape(
  1. ShapeBorder shape
)

Apply custom shape to button

Equivalent to

RaisedButton(
  shape: input
)

Implementation

NikuRaisedButton shape(ShapeBorder shape) {
  this._shape = shape;

  return this;
}