| 16 | } |
| 17 | |
| 18 | pub struct AlertDialog { |
| 19 | title: String, |
| 20 | message: String, |
| 21 | alert_type: AlertType, |
| 22 | open: bool, |
| 23 | } |
| 24 | |
| 25 | impl AlertDialog { |
| 26 | pub fn new(title: &str, message: &str, alert_type: AlertType) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected