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