UserInputRequest constructor

const UserInputRequest({
  1. required String question,
  2. List<String>? choices,
  3. bool? allowFreeform,
})

Implementation

const UserInputRequest({
  required this.question,
  this.choices,
  this.allowFreeform,
});