ratatui_toolkit/primitives/toast/constructors/
toast_manager_new.rs

1use crate::primitives::toast::ToastManager;
2
3impl ToastManager {
4    pub fn new() -> Self {
5        Self {
6            toasts: Vec::new(),
7            max_toasts: 5,
8        }
9    }
10}