findProperties method

Iterable<Property> findProperties(
  1. String propertyName
)

Retrieves all properties with the name propertyName

Implementation

Iterable<Property> findProperties(final String propertyName) =>
    properties.where((p) => p.name == propertyName);