operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

Checks for equality, other should be exactly the same.

Implementation

@override
bool operator ==(Object other) =>
    identical(this, other) ||
    other is TypeInfo &&
        _typeWrapper == other._typeWrapper &&
        _listEqualityTypeInfo.equals(_arguments, other._arguments);