tableName property

String tableName

The name of the table in the source dataset.

Implementation

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