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'errors'] = this.errors;
json[r'warnings'] = this.warnings;
return json;
}