copyWith method
Implementation
SectionConfig copyWith({
String? name,
String? description,
bool? active,
Map<String, dynamic>? settings,
Map<String, dynamic>? extensions,
}) {
return SectionConfig(
name: name ?? this.name,
description: description ?? this.description,
active: active ?? this.active,
settings: settings ?? this.settings,
);
}