TransactWriteItem constructor

TransactWriteItem({
  1. ConditionCheck? conditionCheck,
  2. Delete? delete,
  3. Put? put,
  4. Update? update,
})

Implementation

TransactWriteItem({
  this.conditionCheck,
  this.delete,
  this.put,
  this.update,
});