setOutlineRadius abstract method
Method is used to specify the thickness of the circle’s outline.
radius Thickness of the outline in pixels.
Returns true if the operation is successful, false otherwise.
Example:
// Set outline radius
bool outlineRadiusSuccess = _circleMapObject!.setOutlineRadius(2.0);
print("Set circle outline radius to 2.0: $outlineRadiusSuccess");
Implementation
bool setOutlineRadius(double radius);