VerifyTokenReply constructor
Implementation
factory VerifyTokenReply({
$core.String? userId,
$fixnum.Int64? exp,
$fixnum.Int64? iat,
UserType? type,
}) {
final $result = create();
if (userId != null) {
$result.userId = userId;
}
if (exp != null) {
$result.exp = exp;
}
if (iat != null) {
$result.iat = iat;
}
if (type != null) {
$result.type = type;
}
return $result;
}