@Environment(MyEnvironmentObj.self) var myVar
vs
@Environment(MyEnvironmentObj.self) private var myVar
I’ve seen that Apple uses the former in their recent tutorials, but I use private in my code, which seems to work great, and I thought private was encouraged whenever possible?