isA function

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

Returns the is operation of this and other.

this is other

Implementation

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