*) @propertyWrapper public struct Published<Value> { /// Creates the published instance with an initial wrapped value. /// /// Don't use this initializer directly. Instead, create a property with the `@Published` attribute, as shown here: /// /// @Published var lastUpdated: Date = Date() /// /// - Parameter wrappedValue: The publisher's initial value. public init(wrappedValue: Value) … }