updateFeatures method
Updates a collection of features in the table.
Parameters:
Return Value: A Future that has no return value.
Implementation
Future<void> updateFeatures(List<Feature> features) {
return _updateFeatures(features).then((_) {
for (final feature in features) {
feature._attributes.invalidateCache();
}
});
}