DynamicListPrompt<T> constructor

DynamicListPrompt<T>({
  1. required String title,
  2. PromptTheme theme = PromptTheme.dark,
  3. int maxVisible = 18,
})

Implementation

DynamicListPrompt({
  required this.title,
  this.theme = PromptTheme.dark,
  this.maxVisible = 18,
});