property method
Implementation
ElementProperty property(String name) {
final prop = _propertyLookup[name];
if (prop == null) {
throw Exception("Property is not in schema: $name");
}
return prop;
}
ElementProperty property(String name) {
final prop = _propertyLookup[name];
if (prop == null) {
throw Exception("Property is not in schema: $name");
}
return prop;
}