Mutation constructor

Mutation({
  1. Ack? ack,
  2. Delete? delete,
  3. Write? insert,
  4. Write? insertOrUpdate,
  5. Write? replace,
  6. Send? send,
  7. Write? update,
})

Implementation

Mutation({
  this.ack,
  this.delete,
  this.insert,
  this.insertOrUpdate,
  this.replace,
  this.send,
  this.update,
});