toJson method

dynamic toJson()

Implementation

toJson() {
  return {
    if (ciphertext != null) 'ciphertext': ciphertext,
    if (salt != null) 'salt': salt,
    if (nonce != null) 'nonce': nonce,
    if (version != null) 'version': version,
    if (preKey != null) 'preKey': preKey,
  };
}