isNotA method

Builder isNotA(
  1. Builder other
)

Returns the is not operator of this and other.

this is! other

Implementation

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