BorderStyle constructor

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

Creates a new BorderStyle with the specified corner and edge characters.

Implementation

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