loadTablesAndLayersCancelable method

CancelableOperation<void> loadTablesAndLayersCancelable()

Cancelable version of loadTablesAndLayers. See that method for more information.

Implementation

CancelableOperation<void> loadTablesAndLayersCancelable() {
  final taskHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ArcGISMapImageLayer_loadTablesAndLayers(
        _handle, errorHandler);
  });
  return taskHandle.toCancelableOperation((_) {});
}