Issue resolved
the issue was due to
onImageCaptureNavigate = { route ->
navController.navigate(it)},
where it is an object of NavbackStackEntry
while navController.navigate needs a route (route is of type T which is @Serializable
the issue was resolved when I passed route instead of it