ConversationLog constructor

ConversationLog({
  1. required bool found,
  2. required String conversationId,
  3. String? logFilePath,
  4. String? content,
})

Implementation

ConversationLog({
  required this.found,
  required this.conversationId,
  this.logFilePath,
  this.content,
});