operator == method

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

Whether other is an xHPKE fingerprint with the same bytes.

Implementation

@override
bool operator ==(Object other) =>
    other is Fingerprint && listEquals(toBytes(), other.toBytes());