FollowUpInput constructor

FollowUpInput({
  1. required String promptText,
  2. String? template,
  3. bool? reminderEnabled,
  4. String? reminderTemplateId,
  5. int? reminderTimeoutMinutes,
  6. bool? reminderRepeat,
})

Implementation

FollowUpInput({
  required this.promptText,
  this.template,
  this.reminderEnabled,
  this.reminderTemplateId,
  this.reminderTimeoutMinutes,
  this.reminderRepeat,
});