error static method

Panel error(
  1. String title,
  2. String content
)

Creates an error-styled panel.

Implementation

static Panel error(String title, String content) {
  return Panel()
    ..title(title)
    ..content(content)
    ..border(style_border.Border.rounded)
    ..titleStyle(Style().bold().foreground(Colors.error));
}