CryptoKeyPair constructor

const CryptoKeyPair({
  1. required String privateKey,
  2. required String publicKey,
})

Implementation

const CryptoKeyPair({
  required this.privateKey,
  required this.publicKey,
});