FilterPredicate constructor

FilterPredicate({
  1. List<FilterPredicate>? childPredicates,
  2. FilterExpression? leafPredicate,
  3. String? operatorType,
})

Implementation

FilterPredicate({
  this.childPredicates,
  this.leafPredicate,
  this.operatorType,
});