allowPartialDeletes method

CascadeDeleteBuilder<T> allowPartialDeletes()

Allow partial deletes when some operations fail.

Implementation

CascadeDeleteBuilder<T> allowPartialDeletes() {
  _options = _options.copyWith(allowPartialDeletes: true);
  return this;
}