WidgetToastable constructor

const WidgetToastable({
  1. Key? key,
  2. bool isManually = false,
  3. required Widget builder(
    1. BuildContext context
    ),
  4. required Widget child,
  5. Alignment? follower,
  6. Alignment? target,
  7. bool visible = false,
  8. Duration? duration,
  9. VoidCallback? callback,
})

Implementation

const WidgetToastable({
  super.key,
  this.isManually = false,
  required this.builder,
  required this.child,
  this.follower,
  this.target,
  this.visible = false,
  this.duration,
  this.callback,
});