keyField property

String keyField

The key field, the field that links the origin and destination tables of this relationship.

Implementation

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