equalsTypeAndArguments method

bool equalsTypeAndArguments(
  1. TypeInfo other
)

Returns true if equalsType and equalsArgumentsTypes are true.

Implementation

bool equalsTypeAndArguments(TypeInfo other) =>
    equalsType(other) && equalsArgumentsTypes(other._arguments);