BorderCharacters constructor

const BorderCharacters({
  1. required String topLeft,
  2. required String top,
  3. required String topRight,
  4. required String right,
  5. required String bottomRight,
  6. required String bottom,
  7. required String bottomLeft,
  8. required String left,
  9. required String empty,
})

Implementation

const BorderCharacters({
  required this.topLeft,
  required this.top,
  required this.topRight,
  required this.right,
  required this.bottomRight,
  required this.bottom,
  required this.bottomLeft,
  required this.left,
  required this.empty,
});