innerRadius method

double innerRadius(
  1. double innerRadius
)

Dynamically calculate the inner factor based on the provided innerRadius

Implementation

double innerRadius(double innerRadius) {
  return (height * innerRadius) / 35;
}