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