TypedAttributeValue constructor

TypedAttributeValue({
  1. Uint8List? binaryValue,
  2. bool? booleanValue,
  3. DateTime? datetimeValue,
  4. String? numberValue,
  5. String? stringValue,
})

Implementation

TypedAttributeValue({
  this.binaryValue,
  this.booleanValue,
  this.datetimeValue,
  this.numberValue,
  this.stringValue,
});