TripSummaryExpandableViewState
data class TripSummaryExpandableViewState(val tripSummaryModel: State<TripSummaryModel?> = mutableStateOf(null), val tripOverviewItems: State<List<TripOverviewItem>> = mutableStateOf(emptyList()), val bottomSheetState: BottomSheetState = BottomSheetState(BottomSheetValue.Collapsed), val onEndActiveGuidance: () -> Unit = {}, val onOpenCommonSearchClick: () -> Unit = {}, val onOpenSearchForChargeClick: (List<Point>) -> Unit = {}, val onWaypointClick: (DestinationSearchResult) -> Unit? = {})
Constructors
Link copied to clipboard
constructor(tripSummaryModel: State<TripSummaryModel?> = mutableStateOf(null), tripOverviewItems: State<List<TripOverviewItem>> = mutableStateOf(emptyList()), bottomSheetState: BottomSheetState = BottomSheetState(BottomSheetValue.Collapsed), onEndActiveGuidance: () -> Unit = {}, onOpenCommonSearchClick: () -> Unit = {}, onOpenSearchForChargeClick: (List<Point>) -> Unit = {}, onWaypointClick: (DestinationSearchResult) -> Unit? = {})