I have this class ``` class CameraConfigurations(p...
# announcements
m
I have this class
Copy code
class CameraConfigurations(private val cameraConfiguration: File? = null)
I figured the the
cameraConfiguration
will have a null file when I call it like as a default constructor
CameraConfigurations()
, but instead it gives me a temporary file. I have to actually do
CameraConfigurations(null)