WriteConcern constructor

const WriteConcern({
  1. dynamic w,
  2. int? wtimeout,
  3. bool fsync = true,
  4. bool j = true,
  5. String? provenance,
})

Creates a WriteConcern object

Implementation

const WriteConcern(
    {this.w,
    this.wtimeout,
    this.fsync = true,
    this.j = true,
    this.provenance});