getLocalEditsCancelable method

CancelableOperation<LocalFeatureEditsResult> getLocalEditsCancelable()

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

Implementation

CancelableOperation<LocalFeatureEditsResult> getLocalEditsCancelable() {
  final taskHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ArcGISFeatureTable_getLocalEdits(
        _handle, errorHandler);
  });
  return taskHandle.toCancelableOperation(
      (element) => element.getValueAsLocalFeatureEditsResult()!);
}