ShowAlertOptions constructor

ShowAlertOptions(
  1. {required String message,
  2. required String type,
  3. int? duration}
)

Implementation

ShowAlertOptions({
  required this.message,
  required this.type,
  this.duration,
});