postSetAttribute method
Implementation
@override
bool postSetAttribute(String name, Object? value) {
if (!post) {
return true;
}
if (_concept == null) {
throw new ConceptException('Entity(oid: ${oid}) concept is not defined.');
}
return true;
}