isA method

Builder isA(
  1. Builder other
)

Returns the is operation of this and other.

this is other

Implementation

Builder isA(
  Builder other,
) {
  return builder.isA(this, other);
}