properties property
Map<String, ManagedPropertyDescription?>
get
properties
All properties (relationships and attributes) of this entity.
The string key is the name of the property, case-sensitive. Values will be instances of either ManagedAttributeDescription or ManagedRelationshipDescription. This is the concatenation of attributes and relationships.
Implementation
Map<String, ManagedPropertyDescription?> get properties {
final all = Map<String, ManagedPropertyDescription?>.from(attributes);
all.addAll(relationships);
return all;
}