Check wether value of this HTType can be assigned to other HTType.
@override bool isA(HTType? other) { if (other == null) return true; if (other is HTExternalType && id == other.id) return true; return false; }