module Ariadne::Forms::Dsl::InputMethods

def hidden(**options)

Parameters:
  • options (Hash) -- The options accepted by the hidden input (see forms docs).
def hidden(**options)
  add_input(HiddenInput.new(builder: builder, form: form, **options))
end