MarkerWidget constructor

MarkerWidget({
  1. required Widget child,
  2. required LatLng latLng,
  3. String? title,
  4. String? snippet,
})

Implementation

MarkerWidget({
  required this.child,
  required this.latLng,
  this.title,
  this.snippet,
});