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