|
{%- import '../../macroses/common.utils.twig' as utils -%}
|
|
|
|
{%- if fields is not empty -%}
|
|
{%- for field in fields -%}
|
|
{%- if field.nullable or field.optional -%}
|
|
{{ field.name }}: Bool = false{%- if not (loop.last) %}, {% endif %}
|
|
{%- endif -%}
|
|
{%- endfor -%}
|
|
{%- endif -%} |