encryptToDevice property

bool encryptToDevice

Implementation

bool get encryptToDevice {
  if (blocked) return false;

  if (identifier == null || ed25519Key == null) return false;

  return client.shareKeysWithUnverifiedDevices || verified;
}