ExpressJwtConfig constructor

const ExpressJwtConfig(
  1. String hmacKey, {
  2. String? issuer,
  3. List<String> audience = const [],
  4. Duration maxAge = const Duration(days: 1),
})

Implementation

const ExpressJwtConfig(this.hmacKey,
    {this.issuer,
    this.audience: const [],
    this.maxAge: const Duration(days: 1)});