deleteFeatureCancelable method

CancelableOperation<void> deleteFeatureCancelable(
  1. Feature feature
)

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

Implementation

CancelableOperation<void> deleteFeatureCancelable(Feature feature) {
  final taskHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_FeatureTable_deleteFeature(
        _handle, feature._handle, errorHandler);
  });
  return taskHandle.toCancelableOperation((_) {});
}