Module constructor

const Module({
  1. required String key,
  2. required String title,
  3. required String description,
  4. List<String> folders = const [],
  5. Map<String, String> files = const {},
  6. List<String> packages = const [],
  7. List<String> devPackages = const [],
  8. List<String> dependsOn = const [],
})

Implementation

const Module({
  required this.key,
  required this.title,
  required this.description,
  this.folders = const [],
  this.files = const {},
  this.packages = const [],
  this.devPackages = const [],
  this.dependsOn = const [],
});