toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final cesApp = this.cesApp;
final confirmationRequirement = this.confirmationRequirement;
final proactiveEnabled = this.proactiveEnabled;
final reactiveEnabled = this.reactiveEnabled;
return {
'cesApp': ?cesApp,
'confirmationRequirement': ?confirmationRequirement,
'proactiveEnabled': ?proactiveEnabled,
'reactiveEnabled': ?reactiveEnabled,
};
}