ChatParams constructor

const ChatParams({
  1. String? topicId,
  2. required String mode,
  3. AiProvider? providerOverride,
  4. bool isValidation = false,
  5. String? validationTarget,
})

Implementation

const ChatParams({
  this.topicId,
  required this.mode,
  this.providerOverride,
  this.isValidation = false,
  this.validationTarget,
});