TextToast constructor

const TextToast(
  1. String message, {
  2. Key? key,
  3. Duration? showDuration,
  4. bool dismissible = true,
  5. ToastLocation? location,
  6. Duration? entryDuration,
})

Implementation

const TextToast(
  this.message, {
  super.key,
  this.showDuration,
  this.dismissible = true,
  this.location,
  this.entryDuration,
});