Method: Primer::Forms::Dsl::TextAreaInput#initialize

Defined in:
app/lib/primer/forms/dsl/text_area_input.rb

#initialize(name:, label:, **system_arguments) ⇒ TextAreaInput

Returns a new instance of TextAreaInput.


10
11
12
13
14
15
# File 'app/lib/primer/forms/dsl/text_area_input.rb', line 10

def initialize(name:, label:, **system_arguments)
  @name = name
  @label = label

  super(**system_arguments)
end