toJson method

Map<String, dynamic> toJson()

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,
  };
}