toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final childPredicates = this.childPredicates;
final leafPredicate = this.leafPredicate;
final operatorType = this.operatorType;
return {
'childPredicates': ?childPredicates,
'leafPredicate': ?leafPredicate,
'operatorType': ?operatorType,
};
}