TripSummaryViewState

data class TripSummaryViewState(    val visible: State<Boolean> = mutableStateOf(false),     val tripSummaryExpandableViewState: State<TripSummaryExpandableViewState> = mutableStateOf(TripSummaryExpandableViewState()),     val tripSummarySimpleViewState: State<TripSummarySimpleViewState> = mutableStateOf(TripSummarySimpleViewState()))

Constructors

Link copied to clipboard
constructor(    visible: State<Boolean> = mutableStateOf(false),     tripSummaryExpandableViewState: State<TripSummaryExpandableViewState> = mutableStateOf(TripSummaryExpandableViewState()),     tripSummarySimpleViewState: State<TripSummarySimpleViewState> = mutableStateOf(TripSummarySimpleViewState()))