UiAlert constructor

const UiAlert({
  1. Key? key,
  2. required AlertType type,
  3. required String message,
})

Implementation

const UiAlert({super.key,
  required this.type,
  required this.message,
});