toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final emailAlertConfig = this.emailAlertConfig;
  final enableLogging = this.enableLogging;
  final notificationChannels = this.notificationChannels;
  return {
    'emailAlertConfig': ?emailAlertConfig,
    'enableLogging': ?enableLogging,
    'notificationChannels': ?notificationChannels,
  };
}