updateFeatureCancelable method

CancelableOperation<void> updateFeatureCancelable(
  1. Feature feature
)

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

Implementation

CancelableOperation<void> updateFeatureCancelable(Feature feature) {
  return _updateFeatureCancelable(feature)
      .then((_) => feature._attributes.invalidateCache());
}