MarkerSettings constructor

MarkerSettings({bool isVisible: false, double height: 8, double width: 8, Color color: Colors.white, DataMarkerType shape: DataMarkerType.circle, double borderWidth: 2, Color borderColor, String imageUrl })

Implementation

MarkerSettings(
    {this.isVisible = false,
    this.height = 8,
    this.width = 8,
    this.color = Colors.white,
    this.shape = DataMarkerType.circle,
    this.borderWidth = 2,
    this.borderColor,
    this.imageUrl});