remove method

void remove()

Disposes of the currently wrapped gmaps.Circle.

Implementation

void remove() {
  if (_circle != null) {
    _circle!.visible = false;
    _circle!.radius = 0;
    _circle!.map = null;
    _circle = null;
  }
}