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