MemoryEntityRecord constructor

MemoryEntityRecord({
  1. String? entityId,
  2. required String name,
  3. String? entityType,
  4. String? context,
  5. double? confidence,
  6. String? createdAt,
  7. String? validAt,
  8. Map<String, String>? metadata,
})

Implementation

MemoryEntityRecord({
  this.entityId,
  required this.name,
  this.entityType,
  this.context,
  this.confidence,
  this.createdAt,
  this.validAt,
  this.metadata,
});