constPadAngle method

void constPadAngle(
  1. num padAngle
)

Defines the Pie.padAngle-accessor as a constant function that always returns the specified value.

Implementation

void constPadAngle(num padAngle) {
  this.padAngle = constant(padAngle);
}