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