WidgetToastable constructor
const
WidgetToastable({
- Key? key,
- bool isManually = false,
- required Widget builder(
- BuildContext context
- required Widget child,
- Alignment? follower,
- Alignment? target,
- bool visible = false,
- Duration? duration,
- 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,
});