Token constructor

Token({
  1. required String tokenString,
  2. required TokenOrigin origin,
  3. required DateTime expirationDate,
  4. required String rlm,
  5. String? clientId,
  6. String? customId,
})

Implementation

Token(
    {required this.tokenString,
    required this.origin,
    required this.expirationDate,
    required this.rlm,
    this.clientId,
    this.customId});