Mutation constructor

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

Implementation

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