text method
Implementation
DialogBuilder text(String customId, Function(DialogTextInput) fn) {
final element = DialogElementBuilder.input(customId);
fn(element);
final row = RowBuilder()..addComponent(element);
_elements.add(row);
return this;
}