Alert constructor

Alert({
  1. required String message,
  2. bool shortDuration = true,
})

Implementation

Alert({
  required this.message,
  this.shortDuration = true,
});