ChangeStreamOptions constructor

ChangeStreamOptions({
  1. Map<String, Object>? resumeAfter,
  2. Map<String, Object>? startAfter,
  3. String? fullDocument,
  4. int? maxAwaitTimeMS,
  5. Timestamp? startAtOperationTime,
  6. bool bypassDocumentValidation = false,
  7. bool allowDiskUse = false,
  8. CollationOptions? collation,
  9. String? comment,
})

Implementation

ChangeStreamOptions(
    {this.resumeAfter,
    this.startAfter,
    this.fullDocument,
    this.maxAwaitTimeMS,
    this.startAtOperationTime,
    super.bypassDocumentValidation,
    super.allowDiskUse,
    super.collation,
    super.comment});