postSetAttribute method

  1. @override
bool postSetAttribute(
  1. String name,
  2. Object? value
)
override

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;
}