AlertWidget constructor

const AlertWidget({
  1. Key? key,
  2. List<AlertAction> alertList = const [ok],
  3. required String title,
  4. String content = "",
})

Implementation

const AlertWidget({
  super.key,
  this.alertList = const [ok],
  required this.title,
  this.content = "",
});