DecodedToken constructor

DecodedToken({
  1. String? clientId,
  2. String? partnerId,
  3. String? extUserId,
  4. String? spinwheelUserId,
  5. int? tokenExpiryInSec,
  6. bool? isCdnRequest,
  7. String? env,
  8. bool? isDefaultExpiryTime,
  9. int? iat,
  10. int? exp,
})

Implementation

DecodedToken({
  String? clientId,
  String? partnerId,
  String? extUserId,
  String? spinwheelUserId,
  int? tokenExpiryInSec,
  bool? isCdnRequest,
  String? env,
  bool? isDefaultExpiryTime,
  int? iat,
  int? exp,
}) {
  _clientId = clientId;
  _partnerId = partnerId;
  _extUserId = extUserId;
  _spinwheelUserId = spinwheelUserId;
  _tokenExpiryInSec = tokenExpiryInSec;
  _isCdnRequest = isCdnRequest;
  _env = env;
  _isDefaultExpiryTime = isDefaultExpiryTime;
  _iat = iat;
  _exp = exp;
}