chars property

BorderChars get chars

Implementation

BorderChars get chars => switch (this) {
      BorderStyle.none =>
        const BorderChars(' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '),
      BorderStyle.ascii =>
        const BorderChars('+', '+', '+', '+', '-', '-', '|', '|'),
      BorderStyle.single =>
        const BorderChars('┌', '┐', '└', '┘', '─', '─', '│', '│'),
      BorderStyle.double =>
        const BorderChars('╔', '╗', '╚', '╝', '═', '═', '║', '║'),
      BorderStyle.rounded =>
        const BorderChars('╭', '╮', '╰', '╯', '─', '─', '│', '│'),
      BorderStyle.thick =>
        const BorderChars('┏', '┓', '┗', '┛', '━', '━', '┃', '┃'),
    };