one thing I’ve been a little mixed up about, when ...
# getting-started
o
one thing I’ve been a little mixed up about, when I have a class like
Copy code
class CurrentConditionsDisplay(
    weatherData: WeatherData,
    private var temp: Float = 0.0f,
    private var humidity: Float = 0.0f,
    private var pressure: Float = 0.0f
)