Alert constructor

const Alert({
  1. required Color color,
  2. required String text,
  3. IconData? icon,
  4. Key? key,
})

Implementation

const Alert({
  required this.color,
  required this.text,
  this.icon,
  super.key
});