# frozen_string_literal: true # :nodoc: class ExampleToggleSwitchForm < Yattho::Forms::ToggleSwitchForm def initialize(**system_arguments) super(name: :example_field, label: "Example", caption: "This is an example toggle switch.", **system_arguments) end end