doubleBorder static method

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

Creates a double-bordered box.

Implementation

static BoxBuilder doubleBorder(String title, String content) {
  return BoxBuilder()
    ..title(title)
    ..content(content)
    ..border(style_border.Border.double);
}