removePropertiesFromBackingMap method Null safety

void removePropertiesFromBackingMap(
  1. List<String> propertyNames
)

Removes multiple properties from backing.

Implementation

void removePropertiesFromBackingMap(List<String> propertyNames) {
  for (final propertyName in propertyNames) {
    backing.removeProperty(propertyName);
  }
}