IntentSummary constructor

IntentSummary({
  1. required DialogActionType dialogActionType,
  2. String? checkpointLabel,
  3. ConfirmationStatus? confirmationStatus,
  4. FulfillmentState? fulfillmentState,
  5. String? intentName,
  6. String? slotToElicit,
  7. Map<String, String>? slots,
})

Implementation

IntentSummary({
  required this.dialogActionType,
  this.checkpointLabel,
  this.confirmationStatus,
  this.fulfillmentState,
  this.intentName,
  this.slotToElicit,
  this.slots,
});