Module constructor

const Module({
  1. List<Type>? imports,
  2. bool includeSubdirectories = true,
  3. bool includeSiblings = true,
})

Create a new Module imports possible list of modules which will be recursively imported.

Implementation

const Module({List<Type>? imports, this.includeSubdirectories = true, this.includeSiblings = true}) : imports = imports ?? const [];