Alert.destructive constructor

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

Implementation

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