AlertWidget constructor
const
AlertWidget({
- Key? key,
- List<
AlertAction> alertList = const [ok], - required String title,
- String content = "",
Implementation
const AlertWidget({
super.key,
this.alertList = const [ok],
required this.title,
this.content = "",
});