I recently ran into an issue where I had to init an @State variable in my init method. This post helped me figure that out.
What I realized was that this is the way to do it:
@State var fullText: String // No default value of ""
init(letter: String) {
    _fullText = State(initialValue: list[letter]!)
}
I understand that @State is a property wrapper, and I read the documentation on property wrappers. And from other reading I discovered under the hood this code:
@State private var flag = false
is translated into this code:
private var _flag: State<Bool> = State(initialValue: false)
private var $flag: Binding<Bool> { return _flag.projectedValue }
private var flag: Bool {
    get { return _flag.wrappedValue }
    nonmutating set { _flag.wrappedValue = newValue }
}
My question is where is it documented that _variableName is created from the wrapped property method and I can redefine it? How is a SwiftUI developer supposed to know that from Apple's docs? I'm trying to find what I'm assuming is Documentation I'm missing.
 
    