module Ariadne::Forms::Dsl::InputMethods
def radio_button_group(**options, &block)
-
block(Proc) -- A block that will be yielded a reference to the input object so it can be customized. -
options(Hash) -- The options accepted by the radio button group input (see forms docs).
def radio_button_group(**options, &block) add_input(RadioButtonGroupInput.new(builder: builder, form: form, **options, &block)) end