setTokens method

void setTokens(
  1. String did,
  2. String handle,
  3. String email,
  4. String accessJwt,
  5. String refreshJwt,
)

Implementation

void setTokens(String did, String handle, String email, String accessJwt,
    String refreshJwt) {
  this.did = did;
  this.handle = handle;
  this.email = email;
  this.accessJwt = accessJwt;
  this.refreshJwt = refreshJwt;
}