UnorderedBulk constructor

UnorderedBulk(
  1. DbCollection collection, {
  2. WriteConcern? writeConcern,
  3. Map<String, Object>? rawOptions,
  4. bool? bypassDocumentValidation,
})

Implementation

UnorderedBulk(super.collection,
    {WriteConcern? writeConcern,
    Map<String, Object>? rawOptions,
    bool? bypassDocumentValidation})
    : super(
          bulkOptions: BulkOptions(
              writeConcern: writeConcern,
              ordered: false,
              bypassDocumentValidation: bypassDocumentValidation),
          rawOptions:
              (rawOptions == null) ? null : (rawOptions..remove(keyOrdered)));