undoLocalEditsCancelable method

CancelableOperation<void> undoLocalEditsCancelable()

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

Implementation

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