removePropertyFromBackingMap method Null safety

void removePropertyFromBackingMap(
  1. String? propertyName
)

Removes a property from backing.

This will remove a value from the backing map.

Implementation

void removePropertyFromBackingMap(String? propertyName) {
  backing.removeProperty(propertyName);
}