AlertButton constructor

const AlertButton({
  1. required String title,
  2. VoidCallback? onPressed,
  3. bool dismissAlert = true,
  4. bool isDestructive = false,
  5. bool isDefault = false,
})

Implementation

const AlertButton({
  required this.title,
  this.onPressed,
  this.dismissAlert = true,
  this.isDestructive = false,
  this.isDefault = false,
});