toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final data = this.data;
final domain = this.domain;
final ttl = this.ttl;
final type = this.type;
return {'data': ?data, 'domain': ?domain, 'ttl': ?ttl, 'type': ?type};
}