scaledRadius property

double scaledRadius

Get the radius of the circle after it has been sized and scaled.

Implementation

double get scaledRadius {
  _scaledSize
    ..setFrom(size)
    ..multiply(absoluteScale);
  return min(_scaledSize.x, _scaledSize.y) / 2;
}