getCreateVoteToEntity static method

CreateVote getCreateVoteToEntity(
  1. VotesResponse response
)

Implementation

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