QVarLike constructor

QVarLike(
  1. String value, {
  2. bool left = true,
  3. bool right = true,
})

Creates a LIKE pattern value with configurable wildcard placement.

value The base string value. left Whether to add % on the left (default: true). right Whether to add % on the right (default: true).

Implementation

QVarLike(String super.value, {this.left = true, this.right = true});