KeyPair constructor

KeyPair({
  1. required Uint8List privateKey,
  2. required Uint8List publicKey,
})

Implementation

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