SeedSection constructor

SeedSection({
  1. required String directory,
  2. required String registry,
  3. List<String>? seedNames,
})

Declares where the seed registry lives.

Implementation

SeedSection({
  required this.directory,
  required this.registry,
  List<String>? seedNames,
}) : seedNames = List.unmodifiable(seedNames ?? const []);