CustomActionSetting constructor

CustomActionSetting({
  1. required String? prompt,
  2. bool? attachment,
  3. bool? shareMessages,
  4. int? messageCount,
  5. String? assistantId,
  6. AssistantType? assistantType,
})

Implementation

CustomActionSetting({
  required this.prompt,
  this.attachment,
  this.shareMessages,
  this.messageCount,
  this.assistantId,
  this.assistantType,
});