getUpdateVoteToEntity static method

UpdateVote getUpdateVoteToEntity(
  1. VotesResponse response
)

Implementation

static domain.UpdateVote getUpdateVoteToEntity(infra.VotesResponse response) {
  return domain.UpdateVote(
    ok: response.ok,
    message: response.message,
  );
}