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