AttributeValue constructor

AttributeValue({
  1. Uint8List? b,
  2. bool? boolValue,
  3. List<Uint8List>? bs,
  4. List<AttributeValue>? l,
  5. Map<String, AttributeValue>? m,
  6. String? n,
  7. List<String>? ns,
  8. bool? nullValue,
  9. String? s,
  10. List<String>? ss,
})

Implementation

AttributeValue({
  this.b,
  this.boolValue,
  this.bs,
  this.l,
  this.m,
  this.n,
  this.ns,
  this.nullValue,
  this.s,
  this.ss,
});