operator == method

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

This class delegates operator== to the identity object.

Implementation

@override
operator ==(other) => other is StoreProxy<S> && identity == other.identity;