stringToGeoPoints method
Implementation
List<GeoPoint> stringToGeoPoints() {
return decodePolyline(
this,
)
.map((e) => GeoPoint(
latitude: e.first.toDouble(),
longitude: e.last.toDouble(),
))
.toList();
}