toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final comparisonType = this.comparisonType;
final comparisonValue = this.comparisonValue;
final expression = this.expression;
final matchType = this.matchType;
final type = this.type;
return {
'comparisonType': ?comparisonType,
'comparisonValue': ?comparisonValue,
'expression': ?expression,
'matchType': ?matchType,
'type': ?type,
};
}