equalTo function

Builder equalTo(
  1. Builder value,
  2. Builder other
)

Returns the equal to operation of this and other.

this == other

Implementation

Builder equalTo(
  Builder value,
  Builder other,
) {
  return Row.binary(left: value, right: other, operator: '==');
}