role property

RelationshipRole role

The role that this table has in this relationship.

Implementation

RelationshipRole get role {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_RelationshipInfo_getRole(
      _handle,
      errorHandler,
    );
  });
  return RelationshipRole._fromCoreValue(
    coreValue,
  );
}