Delete constructor

Delete({
  1. required Map<String, AttributeValue> key,
  2. required String tableName,
  3. String? conditionExpression,
  4. Map<String, String>? expressionAttributeNames,
  5. Map<String, AttributeValue>? expressionAttributeValues,
  6. ReturnValuesOnConditionCheckFailure? returnValuesOnConditionCheckFailure,
})

Implementation

Delete({
  required this.key,
  required this.tableName,
  this.conditionExpression,
  this.expressionAttributeNames,
  this.expressionAttributeValues,
  this.returnValuesOnConditionCheckFailure,
});