get2D method

Future<UserInput> get2D (String buttontype, String htmlTitleText, List<String> inputTextLabelInfo, Map<int, List<List<String>>> comboInfoND, Map<int, List<String>> defaultInputTextsND, List<int> sizes, List<String> isChecked, bool alternateRowColor, List<String> buttonLabels)

Shortcut for InputDialog.show2D. The name "get2D" indicates that the user input is requested and returned from a dialog with 2 input columns.

Implementation

static Future<UserInput> get2D(
    String buttontype,
    String htmlTitleText,
    List<String> inputTextLabelInfo,
    Map<int, List<List<String>>> comboInfoND,
    Map<int, List<String>> defaultInputTextsND,
    List<int> sizes,
    List<String> isChecked,
    bool alternateRowColor,
    List<String> buttonLabels) async {
  return InputDialog.show2D(
      buttontype,
      htmlTitleText,
      inputTextLabelInfo,
      comboInfoND,
      defaultInputTextsND,
      sizes,
      isChecked,
      alternateRowColor,
      buttonLabels);
}