DSMessageBrokerMessage constructor

DSMessageBrokerMessage({
  1. required String id,
  2. required String payload,
  3. Map<String, String> attributes = const {},
  4. DateTime? publishTime,
  5. String? ackId,
})

Constructor.

Implementation

DSMessageBrokerMessage({
  required this.id,
  required this.payload,
  this.attributes = const {},
  this.publishTime,
  this.ackId,
});