toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final channelType = this.channelType;
final disableBargeInControl = this.disableBargeInControl;
final disableDtmf = this.disableDtmf;
final instagramConfig = this.instagramConfig;
final noiseSuppressionLevel = this.noiseSuppressionLevel;
final personaProperty = this.personaProperty;
final profileId = this.profileId;
final webWidgetConfig = this.webWidgetConfig;
final whatsappConfig = this.whatsappConfig;
return {
'channelType': ?channelType,
'disableBargeInControl': ?disableBargeInControl,
'disableDtmf': ?disableDtmf,
'instagramConfig': ?instagramConfig,
'noiseSuppressionLevel': ?noiseSuppressionLevel,
'personaProperty': ?personaProperty,
'profileId': ?profileId,
'webWidgetConfig': ?webWidgetConfig,
'whatsappConfig': ?whatsappConfig,
};
}