Marker constructor

Marker({
  1. required LatLng latLng,
  2. MarkerSize? size,
  3. InfoWindow? infoWindow,
  4. String? base64Marker,
})

Implementation

Marker({
  required this.latLng,
  this.size,
  this.infoWindow,
  this.base64Marker,
});