AlertInfo constructor

const AlertInfo({
  1. required String title,
  2. required String message,
})

Implementation

const AlertInfo({
  required this.title,
  required this.message,
});