UpdateUser constructor

const UpdateUser({
  1. required User user,
  2. dynamic extra,
  3. int? clientId,
})

Some data of a user has changed. This update is guaranteed to come before the user identifier is returned to the application

Implementation

const UpdateUser({
  required this.user,
  this.extra,
  this.clientId,
});