ChoiceDialog<T> constructor

const ChoiceDialog<T>(
  1. Key? key,
  2. Widget title,
  3. Widget? content,
  4. List<DialogChoice<T>> choices,
  5. List<DialogAction<T>> actions,
)

Implementation

const ChoiceDialog(
    Key? key, this.title, this.content, this.choices, this.actions)
    : super(key: key);