toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'valid'] = this.valid;
json[r'query'] = this.query;
json[r'records'] = this.records;
json[r'wellKnownQuery'] = this.wellKnownQuery;
json[r'wellKnownPresent'] = this.wellKnownPresent;
json[r'wellKnownValue'] = this.wellKnownValue;
json[r'errors'] = this.errors;
json[r'warnings'] = this.warnings;
return json;
}