toValue method
Implementation
String toValue() {
switch (this) {
case ScalarAttributeType.s:
return 'S';
case ScalarAttributeType.n:
return 'N';
case ScalarAttributeType.b:
return 'B';
}
}
String toValue() {
switch (this) {
case ScalarAttributeType.s:
return 'S';
case ScalarAttributeType.n:
return 'N';
case ScalarAttributeType.b:
return 'B';
}
}