path property Null safety
the path of the polyline.
Implementation
UnmodifiableListView<LatLng> get path=>UnmodifiableListView(_path);
Implementation
set path(List<LatLng> value){
_path=value;
_sendData('setPolylinePath',{'path':_pathToMap(value)});
}