tableName property

String tableName

The table name for the sync result.

Implementation

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