Border constructor

const Border({
  1. required String top,
  2. required String bottom,
  3. required String left,
  4. required String right,
  5. required String topLeft,
  6. required String topRight,
  7. required String bottomLeft,
  8. required String bottomRight,
  9. String? middleLeft,
  10. String? middleRight,
  11. String? middleTop,
  12. String? middleBottom,
  13. String? middle,
})

Creates a border with the specified characters.

Implementation

const Border({
  required this.top,
  required this.bottom,
  required this.left,
  required this.right,
  required this.topLeft,
  required this.topRight,
  required this.bottomLeft,
  required this.bottomRight,
  this.middleLeft,
  this.middleRight,
  this.middleTop,
  this.middleBottom,
  this.middle,
});