changeFullName method
Changes the full name of a user.
Implementation
Future<UserProfileModel> changeFullName(
final Session session,
final String? fullName,
) async {
final userId = session.authenticated!.authUserId;
return userProfiles.changeFullName(session, userId, fullName);
}