Mutation constructor

Mutation({
  1. String? baseVersion,
  2. Key? delete,
  3. Entity? insert,
  4. Entity? update,
  5. String? updateTime,
  6. Entity? upsert,
})

Implementation

Mutation({
  this.baseVersion,
  this.delete,
  this.insert,
  this.update,
  this.updateTime,
  this.upsert,
});