The dart generator emits a property typed StatusEnum? for an anyOf between a $ref'd enum and an inline literal enum, but never declares the StatusEnum class anywhere in lib/model/, so the generated file fails to compile.
status:
anyOf:
- $ref: '#/components/schemas/APIStatus'
- { type: string, enum: ['pending-verification'] }
Working on a PR.
The dart generator emits a property typed
StatusEnum?for ananyOfbetween a$ref'd enum and an inline literal enum, but never declares theStatusEnumclass anywhere inlib/model/, so the generated file fails to compile.Working on a PR.