getRelatedTablesWithRelationshipInfo method

List<ArcGISFeatureTable> getRelatedTablesWithRelationshipInfo(
  1. {required RelationshipInfo relationshipInfo}
)

Returns list of tables related by the given relationship info.

Only returns tables that have been added to the map. If there are multiple instances of the related table on the map, all such instances will be returned.

Parameters:

  • relationshipInfo — The relationship info.

Return Value: List of ArcGISFeatureTable

Implementation

List<ArcGISFeatureTable> getRelatedTablesWithRelationshipInfo(
    {required RelationshipInfo relationshipInfo}) {
  final arrayHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore
        .RT_ArcGISFeatureTable_getRelatedTablesWithRelationshipInfo(
            _handle, relationshipInfo._handle, errorHandler);
  });
  return arrayHandle.toList();
}