explode method Null safety
Implementation
FeatureCollection explode() {
final explodedFeatures = <Feature>[];
for (final feature in features) {
explodedFeatures.addAll(feature.explode());
}
return FeatureCollection(explodedFeatures);
}
FeatureCollection explode() {
final explodedFeatures = <Feature>[];
for (final feature in features) {
explodedFeatures.addAll(feature.explode());
}
return FeatureCollection(explodedFeatures);
}