googleMapsCircle property

Circle googleMapsCircle

Implementation

googleMaps.Circle get googleMapsCircle => googleMaps.Circle(
      circleId: googleMaps.CircleId(this.circleId.value),
      consumeTapEvents: this.consumeTapEvents,
      fillColor: this.fillColor,
      onTap: this.onTap,
      center: this.center.googleLatLng,
      radius: this.radius,
      strokeColor: this.strokeColor,
      strokeWidth: this.strokeWidth,
      visible: this.visible,
    );