FieldPredicate<T>.of constructor

FieldPredicate<T>.of(
  1. FieldPredicate<T> other
)

Implementation

FieldPredicate.of(FieldPredicate<T> other)
  : _operand = other._operand,
    _value = other._value,
    _values = (other._values != null ? List.of(other._values!) : null),
    _useValue = other._useValue;