operator == method

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

Returns whether other represents the same provider identity.

Implementation

@override
/// Returns whether [other] represents the same provider identity.
bool operator ==(Object other) =>
    other is ProviderKey && other.type == type && other.argsHash == argsHash;