equalsTypeOrEntityType method

bool equalsTypeOrEntityType(
  1. TypeInfo? other
)

Implementation

bool equalsTypeOrEntityType(TypeInfo? other) {
  if (other == null) return false;
  return equalsType(other) || equalsEntityType(other);
}