Memory constructor
Memory({})
Implementation
Memory({
required this.id,
required this.content,
required this.type,
DateTime? timestamp,
this.emotionalValence = EmotionalValence.neutral,
this.emotionalIntensity = 0.0,
double strength = 1.0,
List<String>? associatedConceptIds,
Map<String, dynamic>? context,
}) : timestamp = timestamp ?? DateTime.now(),
strength = strength,
associatedConceptIds = associatedConceptIds ?? const [],
context = context ?? const {};