EncryptedMessage constructor
Implementation
EncryptedMessage({required Uint8List nonce, required Uint8List cipherText})
: super.withConstraintRange((nonce + cipherText).toUint8List(),
min: nonceLength, max: nonce.length + cipherText.length);