QueueMessage constructor

QueueMessage({
  1. required String? id,
  2. required String? appID,
  3. String? robotID,
  4. String? userID,
  5. int? msgType = QMT_KeyExchange,
  6. Uint8List? payload,
  7. bool? encrypted,
  8. Version? version,
})

Implementation

QueueMessage({
  required this.id,
  required this.appID,
  this.robotID,
  this.userID,
  this.msgType = QMT_KeyExchange,
  this.payload,
  this.encrypted,
  this.version,
});