toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowedInConversation = this.allowedInConversation;
final catalog = this.catalog;
final exampleValues = this.exampleValues;
final facet = this.facet;
final finalQuestion = this.finalQuestion;
final frequency = this.frequency;
final generatedQuestion = this.generatedQuestion;
return {
'allowedInConversation': ?allowedInConversation,
'catalog': ?catalog,
'exampleValues': ?exampleValues,
'facet': ?facet,
'finalQuestion': ?finalQuestion,
'frequency': ?frequency,
'generatedQuestion': ?generatedQuestion,
};
}