isNotA method

bool isNotA(
  1. HTType? other
)

Wether object of this HTType cannot be assigned to other HTType

Implementation

bool isNotA(HTType? other) => !isA(other);