Future<UserModel> getUserData(String uid) async {
final document = await _userAPI.getUserData(uid);
final updatedUser = UserModel.fromMap(document.data);
return updatedUser;
}
i am getting the following exception in the second line
"Exception has occurred.
AppwriteException (AppwriteException: document_not_found, Document with the requested ID could not be found. (404))"