Checks equality based on the public key.
@override operator ==(other) { if (identical(this, other)) return true; if (other is! SuiSecp256k1PublicKey) return false; return publicKey == other.publicKey; }