toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final comparator = this.comparator;
final fieldSource = this.fieldSource;
final fieldSourceValue = this.fieldSourceValue;
final isNegation = this.isNegation;
final literalValue = this.literalValue;
return {
'comparator': ?comparator,
'fieldSource': ?fieldSource,
'fieldSourceValue': ?fieldSourceValue,
'isNegation': ?isNegation,
'literalValue': ?literalValue,
};
}