Authorization constructor

Authorization({
  1. String? strategy = STRATEGY_JWT,
  2. String? accessToken,
  3. String? refreshToken,
  4. Map? refreshPayload,
  5. Map? refreshHeaders,
  6. String? refreshUrl,
  7. int? expires = -1,
})

Implementation

Authorization(
    {this.strategy = STRATEGY_JWT,
    this.accessToken,
    this.refreshToken,
    this.refreshPayload,
    this.refreshHeaders,
    this.refreshUrl,
    this.expires = -1});