ChatMessageModel constructor

const ChatMessageModel({
  1. required List<ChoiceModel> choices,
  2. String? id,
  3. String? model,
})

Implementation

const ChatMessageModel({
  required this.choices,
  this.id,
  this.model,
});