operator == method

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

Returns true if signature bytes and publicKey identical

Implementation

@override
bool operator ==(other) =>
    other is Signature &&
    const ListEquality<int?>().equals(bytes, other.bytes) &&
    _publicKey == other.publicKey;