getFreshJwt method
Implementation
Future<String> getFreshJwt(String userIdentifier, String password, [String? mfaToken, bool? mfaRecovery]) {
return Sentc.getApi().getFreshJwt(
baseUrl: baseUrl,
authToken: appToken,
userIdentifier: userIdentifier,
password: password,
mfaToken: mfaToken,
mfaRecovery: mfaRecovery,
);
}