ParamsOfNaclSecretBox constructor
Implementation
ParamsOfNaclSecretBox({
@required String decrypted,
@required String nonce,
@required String key,
}) {
_decrypted = ArgumentError.checkNotNull(
decrypted, 'ParamsOfNaclSecretBox decrypted');
_nonce = ArgumentError.checkNotNull(nonce, 'ParamsOfNaclSecretBox nonce');
_key = ArgumentError.checkNotNull(key, 'ParamsOfNaclSecretBox key');
}