removePropertiesFromBackingMap method Null safety
Removes multiple properties from backing.
Implementation
void removePropertiesFromBackingMap(List<String> propertyNames) {
for (final propertyName in propertyNames) {
backing.removeProperty(propertyName);
}
}