height method

NikuFlatButton height(
  1. double height
)

Set height of button

Equivalent to

FlatButton(
  height: input
)

Implementation

NikuFlatButton height(double height) {
  this._height = height;

  return this;
}