toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final column = this.column;
final description = this.description;
final dimension = this.dimension;
final ignoreNull = this.ignoreNull;
final name = this.name;
final nonNullExpectation = this.nonNullExpectation;
final rangeExpectation = this.rangeExpectation;
final regexExpectation = this.regexExpectation;
final rowConditionExpectation = this.rowConditionExpectation;
final setExpectation = this.setExpectation;
final sqlAssertion = this.sqlAssertion;
final statisticRangeExpectation = this.statisticRangeExpectation;
final suspended = this.suspended;
final tableConditionExpectation = this.tableConditionExpectation;
final threshold = this.threshold;
final uniquenessExpectation = this.uniquenessExpectation;
return {
'column': ?column,
'description': ?description,
'dimension': ?dimension,
'ignoreNull': ?ignoreNull,
'name': ?name,
'nonNullExpectation': ?nonNullExpectation,
'rangeExpectation': ?rangeExpectation,
'regexExpectation': ?regexExpectation,
'rowConditionExpectation': ?rowConditionExpectation,
'setExpectation': ?setExpectation,
'sqlAssertion': ?sqlAssertion,
'statisticRangeExpectation': ?statisticRangeExpectation,
'suspended': ?suspended,
'tableConditionExpectation': ?tableConditionExpectation,
'threshold': ?threshold,
'uniquenessExpectation': ?uniquenessExpectation,
};
}