copyWith method
Implementation
FeatureToggleVO copyWith({
String? uid,
Map<String, String>? parent,
List<FeatureToggleEntryVO>? toggles,
}) {
return FeatureToggleVO(
uid: uid ?? this.uid,
toggles: toggles ?? this.toggles,
parent: parent ?? this.parent,
);
}