WToast constructor

const WToast({
  1. Key? key,
  2. String? title,
  3. String? description,
  4. String? date,
  5. String? actionText,
  6. MToastMakeup? makeup,
  7. dynamic onTap()?,
  8. dynamic onTapAction()?,
  9. dynamic onTapClose()?,
})

Implementation

const WToast({
  super.key,
  this.title,
  this.description,
  this.date,
  this.actionText,
  this.makeup,
  this.onTap,
  this.onTapAction,
  this.onTapClose,
});