CreateTokenReq constructor
Implementation
factory CreateTokenReq({
$core.String? userID,
$core.int? userType,
}) {
final result = create();
if (userID != null) result.userID = userID;
if (userType != null) result.userType = userType;
return result;
}