Conversation constructor

Conversation({
  1. String? appVersion,
  2. String? channelType,
  3. String? deployment,
  4. String? endTime,
  5. String? entryAgent,
  6. List<String>? inputTypes,
  7. String? languageCode,
  8. List<Message>? messages,
  9. String? name,
  10. String? source,
  11. String? startTime,
  12. int? turnCount,
  13. List<ConversationTurn>? turns,
})

Implementation

Conversation({
  this.appVersion,
  this.channelType,
  this.deployment,
  this.endTime,
  this.entryAgent,
  this.inputTypes,
  this.languageCode,
  this.messages,
  this.name,
  this.source,
  this.startTime,
  this.turnCount,
  this.turns,
});