Message constructor

Message({
  1. Map<MessageSystemAttributeName, String>? attributes,
  2. String? body,
  3. String? mD5OfBody,
  4. String? mD5OfMessageAttributes,
  5. Map<String, MessageAttributeValue>? messageAttributes,
  6. String? messageId,
  7. String? receiptHandle,
})

Implementation

Message({
  this.attributes,
  this.body,
  this.mD5OfBody,
  this.mD5OfMessageAttributes,
  this.messageAttributes,
  this.messageId,
  this.receiptHandle,
});