How to extend my exist Toggle with intents

I create a toggle component based on Toggle

public struct Checkbox: View {
    ...    
    public init(...) {
        ...
    }
    
    public var body: some View {
        return HStack(spacing: 8) {
            ZStack {
                Toggle("", isOn: $isPrivateOn)
                ...
            }
            ...
        }
    }
}

how can I create a init method to support init with AppIntent like:

// Available when SwiftUI is imported with AppIntents
@available(iOS 17.0, macOS 14.0, tvOS 17.0, watchOS 10.0, *)
extension Toggle {

    /// Creates a toggle performing an `AppIntent`.
    ///
    /// - Parameters:
    ///   - isOn: Whether the toggle is on or off.
    ///   - intent: The `AppIntent` to be performed.
    ///   - label: A view that describes the purpose of the toggle.
    public init<I>(isOn: Bool, intent: I, @ViewBuilder label: () -> Label) where I : AppIntent
}
How to extend my exist Toggle with intents
 
 
Q