toWKT method Null safety
Converts the FeatureCollection to a WKT string.
Implementation
String toWKT() {
return 'GEOMETRYCOLLECTION(${features.map((f) => f.toWKT()).join(',')})';
}
Converts the FeatureCollection to a WKT string.
String toWKT() {
return 'GEOMETRYCOLLECTION(${features.map((f) => f.toWKT()).join(',')})';
}