NUIMapPolyline constructor

NUIMapPolyline({
  1. String? id,
  2. List<NUILatLng>? points,
  3. bool? visible,
  4. int? width,
  5. Color? color,
  6. VoidCallback? onTap,
  7. int? zIndex,
  8. bool? geodesic,
  9. bool? consumeTapEvents,
})

Implementation

NUIMapPolyline({String? id, this.points, this.visible, this.width, this.color, this.onTap, this.zIndex, this.geodesic, this.consumeTapEvents}){
  this.id = id ?? randomUUID();
}