copyWith method
Implementation
FondeNavigationStateData copyWith({
List<String>? expandedGroupIds,
String? selectedItemId,
}) {
return FondeNavigationStateData(
expandedGroupIds: expandedGroupIds ?? this.expandedGroupIds,
selectedItemId: selectedItemId ?? this.selectedItemId,
);
}