OverAlertModel constructor

OverAlertModel({
  1. String? title,
  2. required String message,
  3. bool autoClose = true,
  4. AlertType type = AlertType.info,
  5. int duration = 3000,
})

Implementation

OverAlertModel({
  this.title,
  required this.message,
  this.autoClose = true,
  this.type = AlertType.info,
  this.duration = 3000,
});