updateUser property
Some data of a user has changed. This update is guaranteed to come before the user identifier is returned to the application
Implementation
UpdateUser? get updateUser {
if (this is UpdateUser) {
return this as UpdateUser;
}
return null;
}