warning static method
Creates a warning-styled panel.
Implementation
static Panel warning(String title, String content) {
return Panel()
..title(title)
..content(content)
..border(style_border.Border.rounded)
..titleStyle(Style().bold().foreground(Colors.warning));
}