KeyPair constructor Null safety

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

Implementation

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