added logs

This commit is contained in:
2024-05-26 00:20:25 +02:00
parent 51e89ce901
commit dae5182f90
20 changed files with 588 additions and 110 deletions

View File

@@ -35,13 +35,13 @@ class Message {
senderUserID: json['sender_user_id'] as String,
channelInternalName: json['channel_internal_name'] as String,
channelID: json['channel_id'] as String,
senderName: json['sender_name'] as String,
senderName: json['sender_name'] as String?,
senderIP: json['sender_ip'] as String,
timestamp: json['timestamp'] as String,
title: json['title'] as String,
content: json['content'] as String,
content: json['content'] as String?,
priority: json['priority'] as int,
userMessageID: json['usr_message_id'] as String,
userMessageID: json['usr_message_id'] as String?,
usedKeyID: json['used_key_id'] as String,
trimmed: json['trimmed'] as bool,
);