NatureChatMessageRequest constructor

NatureChatMessageRequest({
  1. required String sessionId,
  2. required String content,
  3. String? functionType = 'chat',
  4. String? metadata,
  5. String? birdScientificName,
  6. String? birdName,
  7. String? birdStory,
  8. String? birdImage,
  9. String? language,
  10. String? timezone,
  11. String? adminUserId,
  12. String? tenantId,
})

Implementation

NatureChatMessageRequest({
  required this.sessionId,
  required this.content,
  this.functionType = 'chat',
  this.metadata,
  this.birdScientificName,
  this.birdName,
  this.birdStory,
  this.birdImage,
  this.language,
  this.timezone,
  this.adminUserId,
  this.tenantId,
});