toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['confirmationIntent'] = this.confirmationIntent;
data['confirmedResult'] = this.confirmedResult;
data['voiceInput'] = this.voiceInput;
data['isSuccess'] = this.isSuccess;
return data;
}