addInput method

void addInput(
  1. int index,
  2. LyInput input
)

Add an input to the form. index is the index where the input will be added. input is the input to add.

Implementation

void addInput(int index, LyInput<dynamic> input) {
  add(LyFormAddInputEvent(index, input));
}