deleteCurrentUser method
Implementation
Future<void> deleteCurrentUser() async {
try {
await _authDataService.deleteCurrentUser();
} catch (e) {
if (e is RdevException) {
throw AuthServiceException(
code: e.code, message: e.message, stackTrace: e.stackTrace);
}
throw AuthServiceException(
stackTrace: StackTrace.current, message: e.toString());
}
}