ListSelect constructor

ListSelect({
  1. String? title,
  2. String? subtitle,
  3. List<DialogItem>? items,
})

The card for presenting a list of options to select from.

Implementation

ListSelect({
  this.title,
  this.subtitle,
  this.items,
});