onUserChanged abstract method

void onUserChanged(
  1. User user,
  2. User? actor,
  3. UserChanges changes
)

Invoked when a user changes (e.g. channel, comment).

What changed can be seen in changes. actor is responsible for this change and can be the user herself, but also a superuser or moderator, etc.

Implementation

void onUserChanged(User user, User? actor, UserChanges changes);