BoxBorderChars constructor

const BoxBorderChars({
  1. required String topLeft,
  2. required String topRight,
  3. required String bottomLeft,
  4. required String bottomRight,
  5. required String horizontal,
  6. required String vertical,
})

Implementation

const BoxBorderChars({
  required this.topLeft,
  required this.topRight,
  required this.bottomLeft,
  required this.bottomRight,
  required this.horizontal,
  required this.vertical,
});