CustomLLM constructor

const CustomLLM({
  1. required String url,
  2. dynamic modelId,
  3. dynamic apiKey,
})

Implementation

const CustomLLM({
  required this.url,
  this.modelId,
  this.apiKey,
});