FToast constructor

const FToast({
  1. required Widget title,
  2. FToastVariant variant = .primary,
  3. FToastStyleDelta style = const .context(),
  4. Clip clipBehavior = .none,
  5. Widget? icon,
  6. Widget? description,
  7. Widget? suffix,
  8. Key? key,
})

Creates a FToast.

Implementation

const FToast({
  required this.title,
  this.variant = .primary,
  this.style = const .context(),
  this.clipBehavior = .none,
  this.icon,
  this.description,
  this.suffix,
  super.key,
});