class Primer::Forms::Dsl::RadioButtonInput
:nodoc:
def initialize(name:, value:, label:, **system_arguments)
def initialize(name:, value:, label:, **system_arguments) @name = name @value = value @label = label super(**system_arguments) yield(self) if block_given? end
def nested_form(**system_arguments, &block)
def nested_form(**system_arguments, &block) @nested_form_arguments = system_arguments @nested_form_block = block end
def to_component
def to_component RadioButton.new(input: self) end
def type
def type :radio_button end
def valid?
def valid? true end