setSession method

Future<void> setSession(
  1. String sessionId
)

bind the user to an existing session id

  • the session id must exists on Pal server
  • the session id exists on current project You can use this when one of your users logs in again after a logout

for more informations about sessions please check our documentation

Implementation

Future<void> setSession(String sessionId) {
  throw "not implemented yet";
}