participantLoginRequirementsToEntity static method

ParticipantLoginRequirements participantLoginRequirementsToEntity(
  1. ParticipantLoginRequirementsResponse response
)

Implementation

static domain.ParticipantLoginRequirements participantLoginRequirementsToEntity(
  infra.ParticipantLoginRequirementsResponse response,
) =>
    domain.ParticipantLoginRequirements(
      ok: response.ok,
      allowed: response.allowed,
      redirectPage: response.redirectPage,
      message: response.message,
    );