removeProperty method

void removeProperty(
  1. String propertyName
)

Removes all properties with the specified propertyName

Implementation

void removeProperty(final String propertyName) =>
    properties.removeWhere((prop) => prop.name == propertyName);