changeFullName method

Future<UserProfileModel> changeFullName(
  1. Session session,
  2. String? fullName
)

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);
}