ToastContent constructor

const ToastContent({
  1. Key? key,
  2. Widget? title,
  3. Widget? description,
  4. double? progressBarValue,
  5. Widget? progressBarWidget,
  6. bool parentShowProgressBar = true,
})

Implementation

const ToastContent({
  super.key,
  this.title,
  this.description,
  this.progressBarValue,
  this.progressBarWidget,
  this.parentShowProgressBar = true,
});