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