operator == method

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

Returns true if the KeyPair matches with the other object.

Implementation

@override
bool operator ==(Object other) {
  return super == (other);
}