factory LogEntry.fromJson(Map<String, dynamic> json) { return LogEntry(type: json['type'] as String? ?? 'unknown', data: json); }