Mutation constructor

Mutation({
  1. String? baseVersion,
  2. String? conflictResolutionStrategy,
  3. Key? delete,
  4. Entity? insert,
  5. PropertyMask? propertyMask,
  6. List<PropertyTransform>? propertyTransforms,
  7. Entity? update,
  8. String? updateTime,
  9. Entity? upsert,
})

Implementation

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