AuthToken constructor

AuthToken(
  1. String accessToken,
  2. DateTime issueDate,
  3. DateTime expirationDate, [
  4. String? refreshToken,
])

Implementation

AuthToken(this.accessToken, this.issueDate, this.expirationDate,
    [this.refreshToken]);