ParamsOfNaclBoxOpen constructor
Implementation
ParamsOfNaclBoxOpen({
@required String encrypted,
@required String nonce,
@required String their_public,
@required String secret,
}) {
_encrypted =
ArgumentError.checkNotNull(encrypted, 'ParamsOfNaclBoxOpen encrypted');
_nonce = ArgumentError.checkNotNull(nonce, 'ParamsOfNaclBoxOpen nonce');
_their_public = ArgumentError.checkNotNull(
their_public, 'ParamsOfNaclBoxOpen their_public');
_secret = ArgumentError.checkNotNull(secret, 'ParamsOfNaclBoxOpen secret');
}