DialogAction constructor

DialogAction({
  1. required DialogActionType type,
  2. FulfillmentState? fulfillmentState,
  3. String? intentName,
  4. String? message,
  5. MessageFormatType? messageFormat,
  6. String? slotToElicit,
  7. Map<String, String>? slots,
})

Implementation

DialogAction({
  required this.type,
  this.fulfillmentState,
  this.intentName,
  this.message,
  this.messageFormat,
  this.slotToElicit,
  this.slots,
});