FloatingMarkerTitleInfo constructor

FloatingMarkerTitleInfo({
  1. required int id,
  2. required LatLng latLng,
  3. required String title,
  4. required Color color,
  5. bool isBold = false,
  6. int zIndex = 1,
})

Implementation

FloatingMarkerTitleInfo({
  required this.id,
  required this.latLng,
  required this.title,
  required this.color,
  this.isBold = false,
  this.zIndex = 1,
});