Alerts constructor

const Alerts({
  1. Key? key,
  2. required String title,
  3. required List<Widget> actions,
  4. IconData? icon,
  5. Color? iconColor,
})

Implementation

const Alerts({
  super.key,
  required this.title,
  required this.actions,
  this.icon,
  this.iconColor,
});