UpdateOneOperation constructor

UpdateOneOperation(
  1. DbCollection collection,
  2. UpdateOneStatement updateOneStatement, {
  3. UpdateOneOptions? updateOneOptions,
  4. Map<String, Object>? rawOptions,
})

Implementation

UpdateOneOperation(
    DbCollection collection, UpdateOneStatement updateOneStatement,
    {UpdateOneOptions? updateOneOptions, Map<String, Object>? rawOptions})
    : super(
        collection,
        [updateOneStatement],
        ordered: false,
        updateOptions: updateOneOptions,
        rawOptions: rawOptions,
      );