getRadius method

double getRadius(
  1. double width,
  2. double height
)

Implementation

double getRadius(double width, double height) =>
    min(width / 2, height / 2) - pickerStrokeWidth;