joinType property

JoinType joinType

The join type.

JoinType.unknown if an error occurs.

Implementation

JoinType get joinType {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_TableJoinSublayerSource_getJoinType(
      _handle,
      errorHandler,
    );
  });
  return JoinType._fromCoreValue(
    coreValue,
  );
}