User Profile Management
Pre-requisite: The user has to be signed in to perform the following operations.
Get User
To get the user profile information, the following method can be called.
Factory.userService.getUser() -> IVPublisher<UserModel>
Update User
To update the user profile information, the following method can be called.
request(required): The user profile update request object.
Factory.userService.updateUser(request: UpdateUserRequest) -> IVPublisher<UserModel>