toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final labels = this.labels;
final name = this.name;
final notificationConfig = this.notificationConfig;
final notificationConfigs = this.notificationConfigs;
final streamConfigs = this.streamConfigs;
return {
'labels': ?labels,
'name': ?name,
'notificationConfig': ?notificationConfig,
'notificationConfigs': ?notificationConfigs,
'streamConfigs': ?streamConfigs,
};
}