* Appends an input that ends the row. * * @param name Optional language-neutral identifier which may used to find * this input again. Should be unique to this block. * @returns The input object created.
(name = '')
| 1714 | * @returns The input object created. |
| 1715 | */ |
| 1716 | appendEndRowInput(name = ''): Input { |
| 1717 | return this.appendInput(new EndRowInput(name, this)); |
| 1718 | } |
| 1719 | |
| 1720 | /** |
| 1721 | * Appends the given input row. |
no test coverage detected