copyWith method
Clones the section with the provided overrides.
Implementation
SeedSection copyWith({
String? directory,
String? registry,
List<String>? seedNames,
}) {
return SeedSection(
directory: directory ?? this.directory,
registry: registry ?? this.registry,
seedNames: seedNames ?? this.seedNames,
);
}