pt method

NikuButton pt(
  1. double padding
)

Apply padding to top

Equivalent to

TextButton(
  padding: EdgeInsets.only(top: input)
)

Implementation

NikuButton pt(double padding) {
  this._pt = padding;

  return this;
}