dryRun method

CascadeDeleteBuilder<T> dryRun()

Enable dry-run mode to preview what would be deleted.

Implementation

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