applyEditsCancelable method

CancelableOperation<List<FeatureEditResult>> applyEditsCancelable()

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

Implementation

CancelableOperation<List<FeatureEditResult>> applyEditsCancelable() {
  final taskHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ServiceFeatureTable_applyEdits(
        _handle, errorHandler);
  });
  return taskHandle
      .toCancelableOperation((element) => element.getValueAsList()!);
}