getRelatedTables method

List<ArcGISFeatureTable> getRelatedTables()

Returns a list of all related tables that have been added to the map.

Only returns tables that have been added to the map that this table is associated with.

Return Value: List of ArcGISFeatureTable

Implementation

List<ArcGISFeatureTable> getRelatedTables() {
  final arrayHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ArcGISFeatureTable_getRelatedTables(
        _handle, errorHandler);
  });
  return arrayHandle.toList();
}