MapBoxMarker constructor

MapBoxMarker({
  1. required RgbColor markerColor,
  2. required MarkerSize markerSize,
  3. required String markerLetter,
})

Implementation

MapBoxMarker({
  required this.markerColor,
  required this.markerSize,
  required this.markerLetter,
}) : assert(markerLetter.runtimeType == String);