GenerationService constructor

GenerationService({
  1. required SchemaService schemaService,
  2. 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,
});