toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'recordType'] = this.recordType;
json[r'ttl'] = this.ttl;
json[r'recordEntries'] = this.recordEntries;
json[r'name'] = this.name;
return json;
}