CargoPickupUiState
data class CargoPickupUiState(val isLoading: Boolean = true, val imageModel: ImageModel? = null, val error: Throwable? = null)
Holds the UI state for the second view during cargo pickup. The state reflects whether the cargo retrieval is in progress, has completed successfully with an image model, or has failed with an error.