jwtIdToken static method

SyncCredentials jwtIdToken(
  1. String jwtIdToken
)

JSON Web Token (JWT): an ID token that typically provides identity information about the authenticated user.

Implementation

static SyncCredentials jwtIdToken(String jwtIdToken) =>
    SyncCredentialsSecret._encode(OBXSyncCredentialsType.JWT_ID, jwtIdToken);