updateFeature method
Implementation
void updateFeature(FeatureAbstract newFeature) {
if (!containsFeature(newFeature.key)) {
throw Exception('Feature key "${newFeature.key}" not found.');
}
replaceFeature(newFeature);
}
void updateFeature(FeatureAbstract newFeature) {
if (!containsFeature(newFeature.key)) {
throw Exception('Feature key "${newFeature.key}" not found.');
}
replaceFeature(newFeature);
}