ToastConfig constructor
const
ToastConfig({
- required AlertType type,
- required String message,
- Duration duration = const Duration(seconds: 2),
- AlertTheme? theme,
Implementation
const ToastConfig({
required this.type,
required this.message,
this.duration = const Duration(seconds: 2),
this.theme,
});