constantEquality method

  1. @override
bool constantEquality(
  1. ECDSAPrivateKey other
)
override

Implementation

@override
bool constantEquality(ECDSAPrivateKey other) {
  return CompareUtils.constantTimeBigIntEquals(
    [secretMultiplier],
    [other.secretMultiplier],
  );
}