AttributeValue constructor

AttributeValue({
  1. double? n,
  2. String? s,
  3. Map<String, double>? sdm,
  4. List<String>? sl,
})

Implementation

AttributeValue({
  this.n,
  this.s,
  this.sdm,
  this.sl,
});