updateUserToEntity static method

UpdateUser updateUserToEntity(
  1. UpdateParticipantResponse response
)

Implementation

static domain.UpdateUser updateUserToEntity(
  infra.UpdateParticipantResponse response,
) {
  return domain.UpdateUser(
    ok: response.ok,
    message: response.message,
  );
}