Update constructor
Update({
- required Map<
String, AttributeValue> key, - required String tableName,
- required String updateExpression,
- String? conditionExpression,
- Map<
String, String> ? expressionAttributeNames, - Map<
String, AttributeValue> ? expressionAttributeValues, - ReturnValuesOnConditionCheckFailure? returnValuesOnConditionCheckFailure,
Implementation
Update({
required this.key,
required this.tableName,
required this.updateExpression,
this.conditionExpression,
this.expressionAttributeNames,
this.expressionAttributeValues,
this.returnValuesOnConditionCheckFailure,
});