When initializing an @State variable, there are two initializers:
/// Initialize with the provided initial value.
public init(wrappedValue value: Value)
/// Initialize with the provided initial value.
public init(initialValue value: Value)
Is there a difference between the two initializers or are they doing the same?
Is one of them preferred to use when creating a new @State variable?