SimpleStandardToastWidget constructor

const SimpleStandardToastWidget({
  1. Key? key,
  2. Widget? title,
  3. bool showCloseButton = true,
  4. required VoidCallback onCloseTap,
  5. ToastCloseButton closeButton = const ToastCloseButton(),
})

Implementation

const SimpleStandardToastWidget({
  super.key,
  this.title,
  this.showCloseButton = true,
  required this.onCloseTap,
  this.closeButton = const ToastCloseButton(),
});