MessageSystemAttributeValue constructor

MessageSystemAttributeValue({
  1. required String dataType,
  2. List<Uint8List>? binaryListValues,
  3. Uint8List? binaryValue,
  4. List<String>? stringListValues,
  5. String? stringValue,
})

Implementation

MessageSystemAttributeValue({
  required this.dataType,
  this.binaryListValues,
  this.binaryValue,
  this.stringListValues,
  this.stringValue,
});