MarkerCollection constructor

MarkerCollection({
  1. required MarkerType markerType,
  2. required String name,
})

Implementation

factory MarkerCollection({
  required final MarkerType markerType,
  required final String name,
}) {
  return MarkerCollection._create(0, markerType, name);
}