StatusPopup constructor

const StatusPopup({
  1. Key? key,
  2. required String title,
  3. required String message,
  4. required AlertType alertType,
})

Implementation

const StatusPopup({
  Key? key,
  required this.title,
  required this.message,
  required this.alertType,
}) : super(key: key);