removeUserImage method
Removes the user's uploaded image, setting it to null.
The client should handle displaying a placeholder for users without images.
Implementation
Future<UserProfileModel> removeUserImage(final Session session) async {
final userId = session.authenticated!.authUserId;
return userProfiles.removeUserImage(session, userId);
}