GenerationService constructor
GenerationService({
- required SchemaService schemaService,
- required FileService fileService,
Creates a new GenerationService with the required dependencies.
schemaService handles schema operations and type lookups
fileService handles file path operations and validation
Implementation
GenerationService({
required this.schemaService,
required this.fileService,
});