paths property

List<List<LatLng>> paths

the paths of the polygon. one polygon could have more than one path.

Implementation

List<List<LatLng>> get paths=>_paths;
void paths=(List<List<LatLng>> value)

Implementation

set paths(List<List<LatLng>> value){
  paths=value;
  _sendSetPathSignal();
}