setRadius abstract method

bool setRadius(
  1. double radius
)

Method is used to specify the size of the circle. radius Radius of the circle in meters. Returns true if the operation is successful, false otherwise.

Example:

// Set circle radius
bool radiusSuccess = _circleMapObject!.setRadius(10.0);
print("Set circle radius to 10.0 meters: $radiusSuccess");

Implementation

bool setRadius(double radius);