StringExpression constructor

const StringExpression(
  1. String value,
  2. PredicateStringOperator operator, {
  3. bool caseSensitive = true,
  4. bool invertOperator = false,
  5. bool allowSpecialCharacters = true,
})

Implementation

const StringExpression(
  this.value,
  this.operator, {
  this.caseSensitive = true,
  this.invertOperator = false,
  this.allowSpecialCharacters = true,
});