externalFormListToEntity static method

ExternalFormList externalFormListToEntity(
  1. External response
)

Implementation

static domain.ExternalFormList externalFormListToEntity(infra.External response) =>
    domain.ExternalFormList(
      id: response.id,
      name: response.name,
      category: response.category,
      formId: response.formId,
      slug: response.slug,
    );