DeviceBoundSession constructor

DeviceBoundSession({
  1. required DeviceBoundSessionKey key,
  2. required String refreshUrl,
  3. required DeviceBoundSessionInclusionRules inclusionRules,
  4. required List<DeviceBoundSessionCookieCraving> cookieCravings,
  5. required TimeSinceEpoch expiryDate,
  6. String? cachedChallenge,
  7. required List<String> allowedRefreshInitiators,
})

Implementation

DeviceBoundSession({
  required this.key,
  required this.refreshUrl,
  required this.inclusionRules,
  required this.cookieCravings,
  required this.expiryDate,
  this.cachedChallenge,
  required this.allowedRefreshInitiators,
});