diff --git a/VDS/Components/Toggle/VDSToggle.swift b/VDS/Components/Toggle/VDSToggle.swift index 79f4c371..c4a5e10b 100644 --- a/VDS/Components/Toggle/VDSToggle.swift +++ b/VDS/Components/Toggle/VDSToggle.swift @@ -18,19 +18,7 @@ import Combine Knob: The circular indicator that slides on the container. */ -@objcMembers public class VDSToggle: VDSToggleBase{ - public convenience init() { - self.init(with: DefaultToggleModel()) - } - - required public init(with model: ModelType) { - super.init(with: model) - } - - required init?(coder: NSCoder) { - super.init(with: DefaultToggleModel()) - } -} +@objcMembers public class VDSToggle: VDSToggleBase{} @objcMembers open class VDSToggleBase: VDSControl, Changable {