DocumentAttributeValue constructor

DocumentAttributeValue({
  1. DateTime? dateValue,
  2. int? longValue,
  3. List<String>? stringListValue,
  4. String? stringValue,
})

Implementation

DocumentAttributeValue({
  this.dateValue,
  this.longValue,
  this.stringListValue,
  this.stringValue,
});