updateAvatarToEntity static method

UpdateAvatar updateAvatarToEntity(
  1. UpdateParticipantAvatarResponse response
)

Implementation

static domain.UpdateAvatar updateAvatarToEntity(
  infra.UpdateParticipantAvatarResponse response,
) {
  return domain.UpdateAvatar(
    ok: response.ok,
    message: response.message,
  );
}