loadTablesAndLayers method

Future<void> loadTablesAndLayers()

Loads all of the ArcGIS map service's sublayers and non-spatial tables.

Return Value: A Future that has no return value.

Implementation

Future<void> loadTablesAndLayers() {
  final taskHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ArcGISMapImageLayer_loadTablesAndLayers(
      _handle,
      errorHandler,
    );
  });
  return taskHandle.toFuture(
    (_) {},
  );
}