DialogChoice<T> constructor

DialogChoice<T>({
  1. Widget? icon,
  2. required Widget title,
  3. Widget? subtitle,
  4. required T value,
  5. bool checked = false,
})

Standard constructor of the DialogChoice class

Implementation

DialogChoice(
    {this.icon,
    required this.title,
    this.subtitle,
    required this.value,
    this.checked = false});