SelectionConfig constructor

const SelectionConfig({
  1. required AlertType type,
  2. required String title,
  3. required String description,
  4. required String leftText,
  5. required String rightText,
  6. VoidCallback? onLeft,
  7. VoidCallback? onRight,
  8. AlertTheme? theme,
})

Implementation

const SelectionConfig({
  required this.type,
  required this.title,
  required this.description,
  required this.leftText,
  required this.rightText,
  this.onLeft,
  this.onRight,
  this.theme,
});