disableOtp method
Implementation
Future<void> disableOtp(
String password, [
String? mfaToken,
bool? mfaRecovery,
]) async {
final jwt = await getFreshJwt(_userIdentifier, password, mfaToken, mfaRecovery);
await Sentc.getApi().disableOtp(baseUrl: baseUrl, authToken: appToken, jwt: jwt);
mfa = true;
final storage = Sentc.getStorage();
await storage.set("user_data_$_userIdentifier", jsonEncode(this));
}