BasicCardDialogflow constructor

BasicCardDialogflow(
  1. Map response
)

Implementation

BasicCardDialogflow(Map response) {
  this.title = response['basicCard']['title'];
  this.subtitle = response['basicCard']['subtitle'];
  this.formattedText = response['basicCard']['formattedText'];
  this.image = new ImageDialogflow(response['basicCard']['image']) ;
  this.buttons = response['basicCard']['buttons'];
}