Message constructor

Message({
  1. required String command,
  2. required MessageEvent event,
  3. List<SelfDescribing>? contexts,
  4. List<String>? trackers,
})

Implementation

Message(
    {required this.command,
    required this.event,
    this.contexts,
    this.trackers});