DecryptSymmetricBytesRequestObjectBuilder constructor

DecryptSymmetricBytesRequestObjectBuilder({
  1. List<int>? message,
  2. String? passphrase,
  3. KeyOptionsObjectBuilder? options,
})

Implementation

DecryptSymmetricBytesRequestObjectBuilder({
  List<int>? message,
  String? passphrase,
  KeyOptionsObjectBuilder? options,
})  : _message = message,
      _passphrase = passphrase,
      _options = options;