CascadeOptions constructor

const CascadeOptions({
  1. bool dryRun = false,
  2. void onProgress(
    1. CascadeProgress
    )?,
  3. CancellationToken? cancellationToken,
  4. Duration timeout = const Duration(seconds: 30),
  5. bool allowPartialDeletes = false,
})

Implementation

const CascadeOptions({
  this.dryRun = false,
  this.onProgress,
  this.cancellationToken,
  this.timeout = const Duration(seconds: 30),
  this.allowPartialDeletes = false,
});