Request constructor

Request({
  1. required String op,
  2. String? id,
  3. String? type,
  4. String? topic,
  5. dynamic msg,
  6. bool? latch,
  7. String? compression,
  8. int? throttleRate,
  9. int? queueLength,
  10. int? queueSize,
  11. String? service,
  12. Map<String, dynamic>? args,
  13. dynamic values,
  14. bool? result,
})

Implementation

Request({
  required this.op,
  this.id,
  this.type,
  this.topic,
  this.msg,
  this.latch,
  this.compression,
  this.throttleRate,
  this.queueLength,
  this.queueSize,
  this.service,
  this.args,
  this.values,
  this.result,
});