AttributeValue constructor

AttributeValue({
  1. bool? boolValue,
  2. String? intValue,
  3. TruncatableString? stringValue,
})

Implementation

AttributeValue({
  this.boolValue,
  this.intValue,
  this.stringValue,
});