B2CAccessToken constructor

B2CAccessToken(
  1. String subject,
  2. String token,
  3. DateTime expireOn
)

Creates an access token.

The subject express the owner of the access token, the token argument is the string representation of the token itself, and expireOn indicates the date-time when the token will expire.

Implementation

B2CAccessToken(this.subject, this.token, this.expireOn);