genToken method
Implementation
String genToken() {
final jwt = JWT({
"sub": R_USER,
"iat": DateTime.now().toUtc().millisecondsSinceEpoch,
"req_id": const Uuid().v4(),
"exp": Sesstion_Time,
});
var token = jwt.sign(SecretKey(genH()));
return token;
}