info static method

BoxBuilder info(
  1. String title,
  2. String content
)

Creates an info-styled box.

Implementation

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