toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'host'] = this.host;
json[r'version'] = this.version;
json[r'mode'] = this.mode;
json[r'ttl'] = this.ttl;
json[r'maxAgeSeconds'] = this.maxAgeSeconds;
json[r'mxRecords'] = this.mxRecords;
return json;
}