AuthenticateResponse constructor

AuthenticateResponse({
  1. String? userId,
  2. String? sessionId,
  3. String? userName,
  4. String? displayName,
  5. String? referrerUrl,
  6. String? bearerToken,
  7. String? refreshToken,
  8. List<String>? roles,
  9. List<String>? permissions,
  10. ResponseStatus? responseStatus,
  11. Map<String, String?>? meta,
})

Implementation

AuthenticateResponse(
    {this.userId,
    this.sessionId,
    this.userName,
    this.displayName,
    this.referrerUrl,
    this.bearerToken,
    this.refreshToken,
    this.roles,
    this.permissions,
    this.responseStatus,
    this.meta});