toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final enable = this.enable;
final ruleVisibility = this.ruleVisibility;
final thresholdConfigs = this.thresholdConfigs;
return {
'enable': ?enable,
'ruleVisibility': ?ruleVisibility,
'thresholdConfigs': ?thresholdConfigs,
};
}