TokenSettings constructor

const TokenSettings({
  1. String key = '',
  2. String issuer = '',
  3. String audience = '',
  4. int secondsToLive = 3600,
})

Implementation

const TokenSettings({
  this.key = '',
  this.issuer = '',
  this.audience = '',
  this.secondsToLive = 3600,
});