ImPacket constructor

ImPacket({
  1. required DateTime timestamp,
  2. required String chatId,
  3. required String message,
})

ImPacket is the chat message packet

This packet is part of the packet sent between Layrz services to stream AI conversations

Implementation

ImPacket({
  required this.timestamp,
  required this.chatId,
  required this.message,
});