KeyPair constructor

KeyPair({
  1. required String privateKey,
  2. required String publicKey,
  3. BigInt? k,
  4. BigInt? x1,
})

Implementation

KeyPair({required this.privateKey, required this.publicKey, this.k, this.x1});