pb method

NikuButton pb(
  1. double padding
)

Apply padding to bottom

Equivalent to

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

Implementation

NikuButton pb(double padding) {
  this._pb = padding;

  return this;
}