toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final blocklistKeywords = this.blocklistKeywords;
final disabledIntentTypes = this.disabledIntentTypes;
final example = this.example;
final inlineSource = this.inlineSource;
final modelPreamble = this.modelPreamble;
return {
'blocklistKeywords': ?blocklistKeywords,
'disabledIntentTypes': ?disabledIntentTypes,
'example': ?example,
'inlineSource': ?inlineSource,
'modelPreamble': ?modelPreamble,
};
}