FindPropertyDefinition static method

PropertyDefinitionBase? FindPropertyDefinition(
  1. String? uri
)
Finds the property definition. The URI.

Implementation

static PropertyDefinitionBase? FindPropertyDefinition(String? uri) {
  return ServiceObjectSchema._allSchemaProperties.Member![uri!];
}