MinimalStandardToastWidget constructor

const MinimalStandardToastWidget({
  1. Key? key,
  2. Widget? title,
  3. Widget? description,
  4. Widget? icon,
  5. required VoidCallback onCloseTap,
  6. bool showCloseButton = true,
  7. ToastCloseButton closeButton = const ToastCloseButton(),
  8. double? progressBarValue,
  9. Widget? progressBarWidget,
})

Implementation

const MinimalStandardToastWidget({
  super.key,
  this.title,
  this.description,
  this.icon,
  required this.onCloseTap,
  this.showCloseButton = true,
  this.closeButton = const ToastCloseButton(),
  this.progressBarValue,
  this.progressBarWidget,
});