EncryptedPrivateKeyBundleV1 constructor

EncryptedPrivateKeyBundleV1({
  1. List<int>? walletPreKey,
  2. Ciphertext? ciphertext,
})

Implementation

factory EncryptedPrivateKeyBundleV1({
  $core.List<$core.int>? walletPreKey,
  $2.Ciphertext? ciphertext,
}) {
  final _result = create();
  if (walletPreKey != null) {
    _result.walletPreKey = walletPreKey;
  }
  if (ciphertext != null) {
    _result.ciphertext = ciphertext;
  }
  return _result;
}