CosmosRequestOptions constructor

const CosmosRequestOptions({
  1. List<String>? partitionKeys,
  2. int? maxItemCount,
  3. bool? enableCrossPartition,
  4. bool? allowTentativeWrites,
})

Construct common request options for cosmosdb requests

Implementation

const CosmosRequestOptions({
  this.partitionKeys,
  this.maxItemCount,
  this.enableCrossPartition,
  this.allowTentativeWrites,
});