SlideOutToast constructor

const SlideOutToast({
  1. Key? key,
  2. required String message,
  3. bool isFailed = false,
  4. int duration = 2,
  5. required ToastPosition position,
})

Implementation

const SlideOutToast({
  super.key,
  required this.message,
  this.isFailed = false,
  this.duration = 2,
  required this.position,
});