toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final behavior = this.behavior;
final dnsName = this.dnsName;
final kind = this.kind;
final localData = this.localData;
final ruleName = this.ruleName;
return {
'behavior': ?behavior,
'dnsName': ?dnsName,
'kind': ?kind,
'localData': ?localData,
'ruleName': ?ruleName,
};
}