ECDSASignature constructor

const ECDSASignature(
  1. BigInt r,
  2. BigInt s
)

Creates an ECDSA signature with r and s components.

Parameters:

  • r: The r component of the signature.
  • s: The s component of the signature.

Implementation

const ECDSASignature(this.r, this.s);