factory LogEvent.fromJson(Map<String, dynamic> json) { return LogEvent( createdAt: timeStampFromJson(json['createdAt']), message: json['message'] as String?, ); }