DialogAskUserComponents constructor

const DialogAskUserComponents({
  1. required String title,
  2. required String question,
  3. required IconData icon,
  4. required List<Widget> actions,
  5. Key? key,
})

Implementation

const DialogAskUserComponents({
  required this.title,
  required this.question,
  required this.icon,
  required this.actions,
  super.key,
});