Alert constructor

const Alert({
  1. Key? key,
  2. Widget? leading,
  3. Widget? title,
  4. Widget? content,
  5. Widget? trailing,
  6. bool destructive = false,
})

Implementation

const Alert(
    {super.key,
    this.leading,
    this.title,
    this.content,
    this.trailing,
    this.destructive = false});