setSessionId method

void setSessionId(
  1. String sessionId
)

Sets the current sessionId.

This is generated when a users logs in, or calls currentUser to update their keys

Implementation

void setSessionId(String sessionId) {
  this.sessionId = sessionId;
}