isNotA method

Expression isNotA(
  1. Expression other
)

Returns the result of this is! other.

Implementation

Expression isNotA(Expression other) => BinaryExpression._(
      expression,
      other,
      'is!',
    );