MessageAttributeValue constructor

MessageAttributeValue({
  1. required String dataType,
  2. Uint8List? binaryValue,
  3. String? stringValue,
})

Implementation

MessageAttributeValue({
  required this.dataType,
  this.binaryValue,
  this.stringValue,
});