get method

Future<UserInput> get (String buttontype, String htmlTitleText, List<String> inputTextLabelInfo, List<List<String>> comboInfo, List<String> defaultInputTexts, List<int> sizes, List<String> isChecked, bool alternateRowColor, List<String> buttonLabels)

Shortcut for InputDialog.show. The name "get" indicates that the user input is requested and returned.

Implementation

static Future<UserInput> get(
    String buttontype,
    String htmlTitleText,
    List<String> inputTextLabelInfo,
    List<List<String>> comboInfo,
    List<String> defaultInputTexts,
    List<int> sizes,
    List<String> isChecked,
    bool alternateRowColor,
    List<String> buttonLabels) async {
  return InputDialog.show(
      buttontype,
      htmlTitleText,
      inputTextLabelInfo,
      comboInfo,
      defaultInputTexts,
      sizes,
      isChecked,
      alternateRowColor,
      buttonLabels);
}