GenerateContentRequest constructor

GenerateContentRequest({
  1. required String model,
  2. required List<InternalContent> contents,
  3. List<InternalSafetySetting>? safetySettings,
  4. InternalGenerationConfig? generationConfig,
})

Implementation

GenerateContentRequest({
  required this.model,
  required this.contents,
  this.safetySettings,
  this.generationConfig,
});