toModel method
Constructs a new ChatInfoAction from this ChatInfoMixin$Action.
Implementation
ChatInfoAction toModel() {
if ($$typename == 'ChatInfoActionAvatarUpdated') {
final model = this as ChatInfoMixin$Action$ChatInfoActionAvatarUpdated;
return ChatInfoActionAvatarUpdated(model.avatar?.toModel());
} else if ($$typename == 'ChatInfoActionCreated') {
final model = this as ChatInfoMixin$Action$ChatInfoActionCreated;
return ChatInfoActionCreated(model.directLinkSlug);
} else if ($$typename == 'ChatInfoActionMemberAdded') {
final model = this as ChatInfoMixin$Action$ChatInfoActionMemberAdded;
return ChatInfoActionMemberAdded(
model.user.toModel(),
model.directLinkSlug,
);
} else if ($$typename == 'ChatInfoActionMemberRemoved') {
final model = this as ChatInfoMixin$Action$ChatInfoActionMemberRemoved;
return ChatInfoActionMemberRemoved(model.user.toModel());
} else if ($$typename == 'ChatInfoActionNameUpdated') {
final model = this as ChatInfoMixin$Action$ChatInfoActionNameUpdated;
return ChatInfoActionNameUpdated(model.name);
}
throw Exception('Unexpected ChatInfoAction: ${$$typename}');
}