configure method

void configure({
  1. required bool useAI,
  2. String? aiApiKey,
  3. GPTModel? gptModel,
})

Implementation

void configure({
  required bool useAI,
  String? aiApiKey,
  GPTModel? gptModel,
}) {
  this.useAI = useAI;
  this.aiApiKey = aiApiKey;
  this.gptModel = gptModel;
}