pr method

NikuButton pr(
  1. double padding
)

Apply padding to right

Equivalent to

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

Implementation

NikuButton pr(double padding) {
  this._pr = padding;

  return this;
}