keyFieldInRelationshipTable property

String keyFieldInRelationshipTable

The key field in the relationship table.

Used in many-to-many and attributed relationships. Values in this field will match values stored in the RelationshipInfo.keyField of features participating in the relationship.

Implementation

String get keyFieldInRelationshipTable {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_RelationshipInfo_getKeyFieldInRelationshipTable(
        _handle, errorHandler);
  });
  return stringHandle.toDartString();
}