AlertDialogWidget constructor

const AlertDialogWidget({
  1. Key? key,
  2. required int type,
  3. required String title,
  4. required String description,
  5. Color? buttonColor,
  6. Color? buttonTextColor,
  7. String? buttonText,
  8. Color? backgroundColor,
})

Implementation

const AlertDialogWidget({
  super.key,
  required this.type,
  required this.title,
  required this.description,
  this.buttonColor,
  this.buttonTextColor,
  this.buttonText,
  this.backgroundColor,
});